aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib.h')
-rw-r--r--lib/lib.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/lib.h b/lib/lib.h
index 6ec2c696..82c4c16e 100644
--- a/lib/lib.h
+++ b/lib/lib.h
@@ -261,7 +261,6 @@ int regexec0(regex_t *preg, char *string, long len, int nmatch,
char *getusername(uid_t uid);
char *getgroupname(gid_t gid);
void do_lines(int fd, char delim, void (*call)(char **pline, long len));
-long environ_bytes();
long long millitime(void);
char *format_iso_time(char *buf, size_t len, struct timespec *ts);
void reset_env(struct passwd *p, int clear);
@@ -272,6 +271,12 @@ void loggit(int priority, char *format, ...);
#define HR_1000 4 // Use decimal instead of binary units
int human_readable(char *buf, unsigned long long num, int style);
+// env.c
+
+long environ_bytes();
+void xsetenv(char *name, char *val);
+void xclearenv(void);
+
// linestack.c
struct linestack {