diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-04-02 05:26:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-04-02 05:26:43 +0000 |
commit | 579598d28192ab8f80bced793613dcebc864a78e (patch) | |
tree | 78128b887fc785e84aca40b1a59312589826871f /sys/lib | |
parent | 0d5624eb344da07e434cb687705cc8ff2fc17a7a (diff) |
missing protos
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libsa/unixdev.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/lib/libsa/unixdev.h b/sys/lib/libsa/unixdev.h index 86bf0587e7e..8da2b088387 100644 --- a/sys/lib/libsa/unixdev.h +++ b/sys/lib/libsa/unixdev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unixdev.h,v 1.1 1997/02/16 14:51:59 mickey Exp $ */ +/* $OpenBSD: unixdev.h,v 1.2 1997/04/02 05:26:42 mickey Exp $ */ /* * Copyright (c) 1996 Michael Shalayeff @@ -38,7 +38,6 @@ int unixstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); int unixopen __P((struct open_file *, ...)); int unixclose __P((struct open_file *)); int unixioctl __P((struct open_file *, u_long, void *)); -off_t ulseek __P((int, off_t, int)); int unix_probe __P((void)); int unix_getc __P((void)); @@ -51,5 +50,7 @@ int uread __P((int, void *, size_t)); int uwrite __P((int, void *, size_t)); int uioctl __P((int, u_long, char *)); int uclose __P((int)); +off_t ulseek __P((int, off_t, int)); void uexit __P((int)); int syscall __P((int, ...)); +int __syscall __P((quad_t, ...)); |