]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/rand.c
Added template implementation files.
[pdclib] / functions / stdlib / rand.c
diff --git a/functions/stdlib/rand.c b/functions/stdlib/rand.c
new file mode 100644 (file)
index 0000000..0821fe4
--- /dev/null
@@ -0,0 +1,9 @@
+// ----------------------------------------------------------------------------
+// $Id$
+// ----------------------------------------------------------------------------
+// Public Domain C Library - http://pdclib.sourceforge.net
+// This code is Public Domain. Use, modify, and redistribute at will.
+// ----------------------------------------------------------------------------
+
+int rand( void ) { /* TODO */ };
+void srand( unsigned int seed ) { /* TODO */ };