summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strmode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/strmode.c')
-rw-r--r--src/lib/libc/string/strmode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/string/strmode.c b/src/lib/libc/string/strmode.c
index 0c2afb4d4c..bd78403cb2 100644
--- a/src/lib/libc/string/strmode.c
+++ b/src/lib/libc/string/strmode.c
@@ -28,17 +28,17 @@
28 */ 28 */
29 29
30#if defined(LIBC_SCCS) && !defined(lint) 30#if defined(LIBC_SCCS) && !defined(lint)
31static char *rcsid = "$OpenBSD: strmode.c,v 1.4 2003/06/02 20:18:38 millert Exp $"; 31static char *rcsid = "$OpenBSD: strmode.c,v 1.5 2003/06/11 21:08:16 deraadt Exp $";
32#endif /* LIBC_SCCS and not lint */ 32#endif /* LIBC_SCCS and not lint */
33 33
34#include <sys/types.h> 34#include <sys/types.h>
35#include <sys/stat.h> 35#include <sys/stat.h>
36#include <string.h> 36#include <string.h>
37 37
38/* XXX mode should be mode_t */
39
38void 40void
39strmode(mode, p) 41strmode(int mode, char *p)
40 register mode_t mode;
41 register char *p;
42{ 42{
43 /* print type */ 43 /* print type */
44 switch (mode & S_IFMT) { 44 switch (mode & S_IFMT) {