summaryrefslogtreecommitdiff
path: root/src/win95
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-08-18 22:46:08 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:36 +0200
commite49862a2d283798b8d80b222acf6aa02f5459368 (patch)
treeba445fc3f8a4940c0a569c3e3288fdd7d717e171 /src/win95
parentd6cb06cd9ec1f941e8c7e05059c057e7139607df (diff)
Fixed compilation with GCC 3.0.
Fixed invalid cast (ushort * -> uint *) in openal.c.
Diffstat (limited to 'src/win95')
-rw-r--r--src/win95/fail.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/win95/fail.h b/src/win95/fail.h
index 8838103..8c13555 100644
--- a/src/win95/fail.h
+++ b/src/win95/fail.h
@@ -21,22 +21,8 @@ extern "C" {
#define VARARG_DECL
#endif
-#ifdef __GNUC__
-
-#if __GNUC__ >= 2 && __GNUC_MINOR__ >= 5
-extern void
-VARARG_DECL fail (const char * __format, ...)
- __attribute__ ((noreturn, format (printf, 1, 2)));
-#else
-extern __volatile__ void VARARG_DECL fail (const char * __format, ...);
-#endif
-
-#else
-
extern void VARARG_DECL fail (const char * __format, ...);
-#endif
-
#ifdef __cplusplus
}
#endif