diff options
| author | christos <christos@NetBSD.org> | 2005-09-25 20:08:15 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2005-09-25 20:08:15 +0000 |
| commit | e86a6cb1b4c100fab456435dab36eb53679b24fc (patch) | |
| tree | 30f3db538402e9c909c4b43982b2440ffc305270 /include/stdlib.h | |
| parent | cc85a7cfd910159294c2ee15797c401967aa0d6c (diff) | |
Add getenv_r and ttyname_r
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index ef7cadf6662..773dca1f579 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdlib.h,v 1.71 2005/09/13 01:44:32 christos Exp $ */ +/* $NetBSD: stdlib.h,v 1.72 2005/09/25 20:08:15 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -111,6 +111,7 @@ div_t div(int, int); __dead void exit(int) __attribute__((__noreturn__)); void free(void *); __aconst char *getenv(const char *); +int getenv_r(const char *, char *, size_t); __pure long labs(long); ldiv_t ldiv(long, long); |
