]> git.sur5r.net Git - cc65/blobdiff - include/geos/gsys.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / include / geos / gsys.h
index 493c2609f6afad28e3a5024faee0ef279612505b..284c38b633a056bef687486c2d053fb1e4c76880 100644 (file)
@@ -4,7 +4,7 @@
   by Maciej 'YTM/Elysium' Witkowiak
 */
 
-#ifndef        _GSYS_H
+#ifndef _GSYS_H
 #define _GSYS_H
 
 void FirstInit(void);
@@ -27,24 +27,24 @@ char get_ostype(void);
 /* possible return values of get_ostype, machine and version flags will
    be combined with OR */
   /* machine flags */
-#define GEOS64         0x00
+#define GEOS64          0x00
 #define GEOS4           0x04    /* plus4 geos is not or'ed with version */
-#define GEOS128                0x80
+#define GEOS128         0x80
   /* version flags */
-#define GEOS_V10       0x10
+#define GEOS_V10        0x10
 #define GEOS_V11        0x11
-#define GEOS_V12       0x12    /* ??? not sure */
-#define GEOS_V20       0x20
-#define WHEELS         0x40    /* only Wheels? */
+#define GEOS_V12        0x12    /* ??? not sure */
+#define GEOS_V20        0x20
+#define WHEELS          0x40    /* only Wheels? */
 
 char get_tv(void);
 
 /* possible return values of get_tv, these flags will be combined
    note that columns state can be changed during runtime and get_tv
    always returns the current state */
-#define COLUMNS40      0x00
-#define COLUMNS80      0x01
-#define TV_PAL         0x00
-#define TV_NTSC                0x80
+#define COLUMNS40       0x00
+#define COLUMNS80       0x01
+#define TV_PAL          0x00
+#define TV_NTSC         0x80
 
 #endif