summaryrefslogtreecommitdiff
path: root/core/openbsd/include/stdlib.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2016-12-11 14:40:31 -0800
committerMichael Forney <mforney@mforney.org>2016-12-11 14:40:55 -0800
commit4fc02f808c9b968c96bc8a18b553ec2b96ad4578 (patch)
tree40361673fe8a3b7245bae1a36879c42bc538ca12 /core/openbsd/include/stdlib.h
parent8c1f3dc3ef1dc4cf417c93637615b4541606bee2 (diff)
mdocml: Use setprogname/getprogname from openbsd
Diffstat (limited to 'core/openbsd/include/stdlib.h')
-rw-r--r--core/openbsd/include/stdlib.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/openbsd/include/stdlib.h b/core/openbsd/include/stdlib.h
index 07b121f8..0e1aa252 100644
--- a/core/openbsd/include/stdlib.h
+++ b/core/openbsd/include/stdlib.h
@@ -5,4 +5,6 @@ long long strtonum(const char *, long long, long long, const char **);
uint32_t arc4random(void);
uint32_t arc4random_uniform(uint32_t);
void arc4random_buf(void *, size_t);
+void setprogname(const char *);
+const char *getprogname(void);
extern char *__progname;