diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1995-10-04 03:43:18 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1995-10-04 03:43:18 +0000 |
| commit | 2f5585d1ac251fe7ff0d1da38c8c4076ea66b851 (patch) | |
| tree | 08afa46ee50aaca386110676b14a0ff2e011f7c6 | |
| parent | d8af1be3d93602b4661a9818cdb6e417f67585cf (diff) | |
Notes
| -rw-r--r-- | sys/sys/conf.h | 6 | ||||
| -rw-r--r-- | sys/sys/linedisc.h | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sys/sys/conf.h b/sys/sys/conf.h index a198e8e0a1fc9..4254f263cb03c 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)conf.h 8.3 (Berkeley) 1/21/94 - * $Id: conf.h,v 1.16 1995/09/08 19:18:02 bde Exp $ + * $Id: conf.h,v 1.17 1995/09/10 21:36:12 bde Exp $ */ #ifndef _SYS_CONF_H_ @@ -160,6 +160,10 @@ int iszerodev __P((dev_t dev)); int register_cdev __P((const char *name, const struct cdevsw *cdp)); int setdumpdev __P((dev_t)); int unregister_cdev __P((const char *name, const struct cdevsw *cdp)); +#ifdef JREMOD +int cdevsw_add __P((dev_t *descrip,struct cdevsw *new,struct cdevsw *old)); +int bdevsw_add __P((dev_t *descrip,struct bdevsw *new,struct bdevsw *old)); +#endif #endif #endif /* !_SYS_CONF_H_ */ diff --git a/sys/sys/linedisc.h b/sys/sys/linedisc.h index a198e8e0a1fc9..4254f263cb03c 100644 --- a/sys/sys/linedisc.h +++ b/sys/sys/linedisc.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)conf.h 8.3 (Berkeley) 1/21/94 - * $Id: conf.h,v 1.16 1995/09/08 19:18:02 bde Exp $ + * $Id: conf.h,v 1.17 1995/09/10 21:36:12 bde Exp $ */ #ifndef _SYS_CONF_H_ @@ -160,6 +160,10 @@ int iszerodev __P((dev_t dev)); int register_cdev __P((const char *name, const struct cdevsw *cdp)); int setdumpdev __P((dev_t)); int unregister_cdev __P((const char *name, const struct cdevsw *cdp)); +#ifdef JREMOD +int cdevsw_add __P((dev_t *descrip,struct cdevsw *new,struct cdevsw *old)); +int bdevsw_add __P((dev_t *descrip,struct bdevsw *new,struct bdevsw *old)); +#endif #endif #endif /* !_SYS_CONF_H_ */ |
