diff options
Diffstat (limited to 'games/eduke32/files/patch-source__jaudiolib__util.h')
-rw-r--r-- | games/eduke32/files/patch-source__jaudiolib__util.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/games/eduke32/files/patch-source__jaudiolib__util.h b/games/eduke32/files/patch-source__jaudiolib__util.h deleted file mode 100644 index fe8012b97e07..000000000000 --- a/games/eduke32/files/patch-source__jaudiolib__util.h +++ /dev/null @@ -1,15 +0,0 @@ ---- ./source/jaudiolib/util.h.orig Wed Aug 2 00:35:30 2006 -+++ ./source/jaudiolib/util.h Wed Aug 2 00:35:30 2006 -@@ -0,0 +1,12 @@ -+#ifndef AUDIOLIB__UTIL_H -+#define AUDIOLIB__UTIL_H -+ -+#ifndef min -+#define min(a, b) ((a) < (b) ? (a) : (b)) -+#endif -+ -+#ifndef max -+#define max(a, b) ((a) > (b) ? (a) : (b)) -+#endif -+ -+#endif |