X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=rmac.h;h=4a4e8b92b97c7b6ed6bd205ec6e773fdfeae753d;hp=39b8ae67a5dcca8d240f3b81816e475e6b7f8a6d;hb=2d302cb8c260f92984efbe9b6c8f9871beebeca5;hpb=02523045dcb28c8f6ad794a84e32beff214be424 diff --git a/rmac.h b/rmac.h index 39b8ae6..4a4e8b9 100644 --- a/rmac.h +++ b/rmac.h @@ -41,10 +41,11 @@ // WARNING(FIXME: Code removed because...) #else - //If we're not compiling for Visual Studio let's assume that we're using - //some flavour of gcc instead. So let's use the gcc compliant macro instead. - //If some weirdo uses something else (I dunno, Intel compiler or something?) - //this is probably going to explode spectacularly. Let's wait for the fireworks! + // If we're not compiling for Visual Studio let's assume that we're using + // some flavour of gcc instead. So let's use the gcc compliant macro + // instead. If some weirdo uses something else (I dunno, Intel compiler or + // something?) this is probably going to explode spectacularly. Let's wait + // for the fireworks! #define DO_PRAGMA(x) _Pragma (#x) #define WARNING(desc) DO_PRAGMA(message (#desc)) #define inline __inline @@ -216,6 +217,7 @@ extern int optim_flags[OPT_COUNT]; // Exported functions char * fext(char *, char *, int); int nthpath(char *, int, char *); +int ParseOptimization(char * optstring); #endif // __RMAC_H__