diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-16 00:03:34 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-02-16 00:03:34 +0000 |
commit | 086450a69044f3ede65845d9a616116db9a6d006 (patch) | |
tree | a91a7d8f967737b7eed23cb127849d08e3af4d63 /sys/dev/raidframe/rf_shutdown.h | |
parent | 41fb84abc5659cc1a368cd59d7929ddf756c3297 (diff) |
Merge from NetBSD, mostly indentation
Diffstat (limited to 'sys/dev/raidframe/rf_shutdown.h')
-rw-r--r-- | sys/dev/raidframe/rf_shutdown.h | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/sys/dev/raidframe/rf_shutdown.h b/sys/dev/raidframe/rf_shutdown.h index bddfe7f9c0d..002dad7fbc6 100644 --- a/sys/dev/raidframe/rf_shutdown.h +++ b/sys/dev/raidframe/rf_shutdown.h @@ -1,5 +1,5 @@ -/* $OpenBSD: rf_shutdown.h,v 1.1 1999/01/11 14:29:49 niklas Exp $ */ -/* $NetBSD: rf_shutdown.h,v 1.1 1998/11/13 04:20:34 oster Exp $ */ +/* $OpenBSD: rf_shutdown.h,v 1.2 1999/02/16 00:03:26 niklas Exp $ */ +/* $NetBSD: rf_shutdown.h,v 1.2 1999/02/05 00:06:17 oster Exp $ */ /* * rf_shutdown.h */ @@ -51,18 +51,17 @@ */ struct RF_ShutdownList_s { - void (*cleanup)(void *arg); - void *arg; - char *file; - int line; - RF_ShutdownList_t *next; + void (*cleanup) (void *arg); + void *arg; + char *file; + int line; + RF_ShutdownList_t *next; }; - #define rf_ShutdownCreate(_listp_,_func_,_arg_) \ _rf_ShutdownCreate(_listp_,_func_,_arg_,__FILE__,__LINE__) -int _rf_ShutdownCreate(RF_ShutdownList_t **listp, void (*cleanup)(void *arg), - void *arg, char *file, int line); -int rf_ShutdownList(RF_ShutdownList_t **listp); +int _rf_ShutdownCreate(RF_ShutdownList_t ** listp, void (*cleanup) (void *arg), + void *arg, char *file, int line); +int rf_ShutdownList(RF_ShutdownList_t ** listp); -#endif /* !_RF__RF_SHUTDOWN_H_ */ +#endif /* !_RF__RF_SHUTDOWN_H_ */ |