diff options
author | 1999-02-03 03:58:05 +0000 | |
---|---|---|
committer | 1999-02-03 03:58:05 +0000 | |
commit | dc247b5dd80b24cb72dd443f44fa2bd2dcc22d7d (patch) | |
tree | 96164e21ac03860cb271f5bbfeb26e5c745cd576 /lib/libc/stdlib/malloc.c | |
parent | gid 71 is now "audlog" (diff) | |
download | wireguard-openbsd-dc247b5dd80b24cb72dd443f44fa2bd2dcc22d7d.tar.xz wireguard-openbsd-dc247b5dd80b24cb72dd443f44fa2bd2dcc22d7d.zip |
wrong ret type for write define (millert@)
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r-- | lib/libc/stdlib/malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 55d00e50722..e75c7cdb097 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -8,7 +8,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: malloc.c,v 1.34 1999/02/01 07:58:30 d Exp $"; +static char rcsid[] = "$OpenBSD: malloc.c,v 1.35 1999/02/03 03:58:05 d Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -107,7 +107,7 @@ static char rcsid[] = "$OpenBSD: malloc.c,v 1.34 1999/02/01 07:58:30 d Exp $"; * we use the unwrapped syscall _thread_sys_write() */ # define write _thread_sys_write - int write __P((int, const void *, size_t)); + ssize_t write __P((int, const void *, size_t)); # undef malloc # undef realloc # undef free |