aboutsummaryrefslogtreecommitdiff
path: root/system.h
diff options
context:
space:
mode:
authorLionel Ulmer2002-06-02 20:28:09 +0000
committerLionel Ulmer2002-06-02 20:28:09 +0000
commit4387c22d30298575b2c5a193d0b61a3080a9bd8c (patch)
tree2c1d0974bd01307de58c25ceea2653bc09b6b617 /system.h
parentda43c14569e7d83813e65e5187041ea11fccef13 (diff)
downloadscummvm-rg350-4387c22d30298575b2c5a193d0b61a3080a9bd8c.tar.gz
scummvm-rg350-4387c22d30298575b2c5a193d0b61a3080a9bd8c.tar.bz2
scummvm-rg350-4387c22d30298575b2c5a193d0b61a3080a9bd8c.zip
Small warning fix + double inclusion protection (can always be useful
:) ). svn-id: r4395
Diffstat (limited to 'system.h')
-rw-r--r--system.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/system.h b/system.h
index 5a8855d1fa..5f9d586480 100644
--- a/system.h
+++ b/system.h
@@ -20,6 +20,9 @@
*
*/
+#ifndef _SYSTEM_H
+#define _SYSTEM_H
+
/* Interface to what's below ScummVM */
class OSystem {
@@ -178,3 +181,5 @@ enum {
GD_MAC,
GD_DC
};
+
+#endif