diff options
author | bde <bde@FreeBSD.org> | 1997-09-16 14:23:35 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-09-16 14:23:35 +0000 |
commit | e89d929bc352fbd322260953b68d8e985ba1279e (patch) | |
tree | 50d7a31fffcf67f88413b5b400469aa5826c64b1 | |
parent | e87717888a028f9e7ef0a8814ba382ea0f989c2c (diff) | |
download | FreeBSD-src-e89d929bc352fbd322260953b68d8e985ba1279e.zip FreeBSD-src-e89d929bc352fbd322260953b68d8e985ba1279e.tar.gz |
Cleaned up.
-rw-r--r-- | sys/sys/devfsext.h | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/sys/sys/devfsext.h b/sys/sys/devfsext.h index f1ec202..1cbf003 100644 --- a/sys/sys/devfsext.h +++ b/sys/sys/devfsext.h @@ -1,27 +1,16 @@ /* usual BSD style copyright here */ /* Written by Julian Elischer (julian@dialix.oz.au)*/ /* - * $Id$ + * $Id: devfsext.h,v 1.15 1997/02/22 09:44:59 peter Exp $ */ #ifndef _SYS_DEVFSECT_H_ -#define _SYS_DEVFSECT_H_ 1 +#define _SYS_DEVFSECT_H_ -void *devfs_add_devswf(void *devsw, - int minor, - int chrblk, - uid_t uid, - gid_t gid, - int perms, - char *fmt, - ...) ; - -void *devfs_link(void *original, /* the result of a previous dev_link */ - char *fmt, /* or dev_add operation */ - ...); - -/* remove the device the cookie represents */ -void devfs_remove_dev(void *devnmp); +void *devfs_add_devswf __P((void *devsw, int minor, int chrblk, uid_t uid, + gid_t gid, int perms, char *fmt, ...)); +void *devfs_link __P((void *original, char *fmt, ...)); +void devfs_remove_dev __P((void *devnmp)); #define DV_CHR 0 #define DV_BLK 1 @@ -39,4 +28,4 @@ void devfs_remove_dev(void *devnmp); #define GID_BIN 7 #define GID_DIALER 68 -#endif /*_SYS_DEVFSECT_H_*/ +#endif /* !_SYS_DEVFSECT_H_ */ |