diff options
| author | christos <christos@NetBSD.org> | 2004-05-27 02:58:14 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2004-05-27 02:58:14 +0000 |
| commit | 58fadb2d694bb6a369372587033b44ea6d751843 (patch) | |
| tree | 95fd51b21b5793059ba66f3a909c80744411607d /include/stdlib.h | |
| parent | 6dd05261cff4dbf43dc2644d9eaff9b3051684b4 (diff) | |
Add unix/98 pty function prototypes.
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 3d196df21bb..15cad1ef399 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdlib.h,v 1.66 2004/04/23 14:44:54 christos Exp $ */ +/* $NetBSD: stdlib.h,v 1.67 2004/05/27 02:58:14 christos Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -191,6 +191,10 @@ char *realpath __P((const char *, char *)); int ttyslot __P((void)); void *valloc __P((size_t)); /* obsoleted by malloc() */ + +int grantpt __P((int)); +int unlockpt __P((int)); +char *ptsname __P((int)); #endif /* @@ -224,6 +228,8 @@ int __unsetenv13 __P((const char *)); #else int unsetenv __P((const char *)) __RENAME(__unsetenv13); #endif + +int posix_openpt __P((int)); #endif /* |
