First step towards getting rid of the non-ANSI stuff.
[super-star-trek.git] / linux.c
diff --git a/linux.c b/linux.c
index 708f933eb51df9f39ddee8e58e2235def8e6e7bd..d99c738fb9fcf95898896e063e8b38ef39ff7e56 100644 (file)
--- a/linux.c
+++ b/linux.c
@@ -6,13 +6,3 @@ void randomize(void) {
 }
 
 
-int max(int a, int b) {
-       if (a > b) return a;
-       return b;
-}
-
-int min(int a, int b) {
-       if (a < b) return a;
-       return b;
-}
-