summaryrefslogtreecommitdiff
path: root/include/bsd/stdlib.h
diff options
context:
space:
mode:
authorRobert Millan <rmh@aybabtu.com>2006-03-17 19:55:21 +0000
committerGuillem Jover <guillem@hadrons.org>2008-05-06 08:52:15 +0300
commit5bd834027d4c6b520ee058d753b479e31e6faf26 (patch)
treef14c592e37d7a16671f0ef625f35ef4ecf855e8d /include/bsd/stdlib.h
parent1e8b819b4579d85654d46df2c16f3a58e9b6b878 (diff)
downloadlibbsd-5bd834027d4c6b520ee058d753b479e31e6faf26.tar.gz
Add getprogname and setprogname
Diffstat (limited to 'include/bsd/stdlib.h')
-rw-r--r--include/bsd/stdlib.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/bsd/stdlib.h b/include/bsd/stdlib.h
index ee358b6..25c37e2 100644
--- a/include/bsd/stdlib.h
+++ b/include/bsd/stdlib.h
@@ -1,6 +1,11 @@
#ifndef LIBBSD_STDLIB_H
#define LIBBSD_STDLIB_H
-const char *fmtcheck(const char *, const char *);
+#include <stdlib.h>
+
+const char *fmtcheck (const char *, const char *);
+
+char *getprogname ();
+void setprogname (char *);
#endif