diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-29 09:26:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-29 09:26:43 +0000 |
commit | 8b2a775e3a1b6e926d58b2f6932c3c2ef6bacd90 (patch) | |
tree | fbc359c73838af3b52423ad2090aaf54b0336841 /sys/arch/pmax | |
parent | 9df26654368d0ad3ae9ec7f619c92a4506875f07 (diff) |
rnd -> random
Diffstat (limited to 'sys/arch/pmax')
-rw-r--r-- | sys/arch/pmax/pmax/conf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/pmax/pmax/conf.c b/sys/arch/pmax/pmax/conf.c index 3ea5da68b71..cbdff3e3a82 100644 --- a/sys/arch/pmax/pmax/conf.c +++ b/sys/arch/pmax/pmax/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.4 1996/07/15 14:57:06 mickey Exp $ */ +/* $OpenBSD: conf.c,v 1.5 1996/08/29 09:26:25 deraadt Exp $ */ /* * Copyright (c) 1992, 1993 @@ -145,8 +145,8 @@ cdev_decl(cfb); cdev_decl(xcfb); #include "mfb.h" cdev_decl(mfb); -#include "rnd.h" -cdev_decl(rnd); +#include "random.h" +cdev_decl(random); /* a framebuffer with an attached mouse: */ @@ -260,7 +260,7 @@ struct cdevsw cdevsw[] = cdev_fbm_init(NFB,fb), /* 86: frame buffer pseudo-device */ cdev_disk_init(NCCD,ccd), /* 87: concatenated disk driver */ cdev_gen_ipf(NIPF,ipl), /* 88: IP filter log */ - cdev_rnd_init(NRND,rnd); /* 89: random data source */ + cdev_random_init(NRANDOM,random); /* 89: random data source */ }; int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]); |