rnd-20001201-1-src
[rocksndiamonds.git] / src / platform.h
diff --git a/src/platform.h b/src/platform.h
deleted file mode 100644 (file)
index 0251307..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-/***********************************************************
-*  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
-*----------------------------------------------------------*
-*  (c) 1995-98 Artsoft Entertainment                       *
-*              Holger Schemel                              *
-*              Oststrasse 11a                              *
-*              33604 Bielefeld                             *
-*              phone: ++49 +521 290471                     *
-*              email: aeglos@valinor.owl.de                *
-*----------------------------------------------------------*
-*  platform.h                                              *
-***********************************************************/
-
-#ifndef PLATFORM_H
-#define PLATFORM_H
-
-/* define keywords for supported main platforms */
-
-#if defined(MSDOS)
-#define PLATFORM_MSDOS
-#elif defined(WIN32)
-#define PLATFORM_WIN32
-#else
-#define PLATFORM_UNIX
-#endif
-
-/* define additional keywords for several Unix platforms */
-
-#if defined(linux)
-#define PLATFORM_LINUX
-#endif
-
-#if defined(__FreeBSD__)
-#define PLATFORM_FREEBSD
-#endif
-
-/* detecting HP-UX by the following compiler keyword definitions:
-   - in K&R mode (the default), the HP C compiler defines "hpux"
-   - in ANSI mode (-Aa or -Ae), the HP C compiler defines "__hpux"
-   - the gcc (Gnu) C compiler defines "__hpux__"
-   Thanks to Jarkko Hietaniemi  for this note. */
-
-#if defined(__hpux__) || defined(__hpux) || defined(hpux)
-#define PLATFORM_HPUX
-#endif
-
-#endif /* PLATFORM_H */