summaryrefslogtreecommitdiff
path: root/randnum.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-16 03:13:38 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-16 03:13:38 +0000
commit1df846b3f94aa7ca9a6622577c367c864131bd04 (patch)
tree4ada2450229a22d5d3d0a2a67d780ffcc7bd0e27 /randnum.h
parent761470f9b51f2df8d25baf6060a7acfd333ba698 (diff)
Fix ansi/pedantic warnings
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@65 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'randnum.h')
-rw-r--r--randnum.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/randnum.h b/randnum.h
index cf6b42b..629a5b4 100644
--- a/randnum.h
+++ b/randnum.h
@@ -1,5 +1,3 @@
-#include <stdint.h>
-
-int32_t randwc(int32_t num);
-uint32_t abs_randwc(uint32_t num);
-int32_t randnum(int32_t lngval);
+int randwc(int num);
+int abs_randwc(int num);
+int randnum(int val);