]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/dev/random/randomdev.h
xnu-344.tar.gz
[apple/xnu.git] / bsd / dev / random / randomdev.h
index 906f620b191f5d02d8c6509813de4ec30c217a74..efa6703e92cb8d174aeb05c83c255b77f4bcbd0a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2000-2001 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 1999, 2000-2002 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
 #ifndef __DEV_RANDOMDEV_H__
 #define __DEV_RANDOMDEV_H__
 
+#include <sys/appleapiopts.h>
+
+#ifdef __APPLE_API_PRIVATE
+
+#include <sys/random.h>
+
 int random_open(dev_t dev, int flags, int devtype, struct proc *pp);
 int random_close(dev_t dev, int flags, int mode, struct proc *pp);
 int random_read(dev_t dev, struct uio *uio, int ioflag);
 int random_write(dev_t dev, struct uio *uio, int ioflag);
 
 u_long RandomULong();
-void read_random(void* buffer, u_int numBytes);
 
+#endif /* __APPLE_API_PRIVATE */
 #endif /* __DEV_RANDOMDEV_H__ */