summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1993-10-11 18:01:45 +0000
committerjtc <jtc@NetBSD.org>1993-10-11 18:01:45 +0000
commit9a6746f2cedf41d175163e3524dae33aa8fb62c5 (patch)
tree70daafb1d7b08ba60aafe39e08f6072be7b18016 /include
parent13c7bc2156723ed6f7ec66b502e4e3c203f61f18 (diff)
Restore define for L_cuserid and add cuserid prototype.
It was provided, but not documented.
Diffstat (limited to 'include')
-rw-r--r--include/stdio.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 7d2bf14a60e..4a53640626d 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)stdio.h 5.17 (Berkeley) 6/3/91
- * $Id: stdio.h,v 1.6 1993/10/06 18:41:55 jtc Exp $
+ * $Id: stdio.h,v 1.7 1993/10/11 18:01:45 jtc Exp $
*/
#ifndef _STDIO_H_
@@ -246,9 +246,11 @@ __END_DECLS
*/
#ifndef _ANSI_SOURCE
#define L_ctermid 1024 /* size for ctermid(); PATH_MAX */
+#define L_cuserid 9 /* size for cuserid(); UT_NAMESIZE + 1 */
__BEGIN_DECLS
char *ctermid __P((char *));
+char *cuserid __P((char *));
FILE *fdopen __P((int, const char *));
int fileno __P((FILE *));
__END_DECLS