summaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>1997-10-16 23:24:49 +0000
committerchristos <christos@NetBSD.org>1997-10-16 23:24:49 +0000
commit410b3b428ab4f86bce8a07b24c33daff19378982 (patch)
tree574ef82e941830e4e6002b1985f888036eaec0aa /include/stdlib.h
parentb3f8f59032e65a5fd64b1002be90bb78aef503e3 (diff)
devname is (dev_t, mode_t) not (int, int)
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 33a389c7095..d11cc295b6c 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stdlib.h,v 1.27 1997/07/14 00:30:28 mikel Exp $ */
+/* $NetBSD: stdlib.h,v 1.28 1997/10/16 23:24:49 christos Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -142,7 +142,7 @@ int cgetstr __P((char *, char *, char **));
int cgetustr __P((char *, char *, char **));
int daemon __P((int, int));
-char *devname __P((int, int));
+char *devname __P((dev_t, mode_t));
int getloadavg __P((double [], int));
long a64l __P((const char *));