diff options
author | Travis CI <zmoelnig@travis-ci.umlaeute.mur.at> | 2016-11-25 00:02:12 +0000 |
---|---|---|
committer | Travis CI <zmoelnig@travis-ci.umlaeute.mur.at> | 2016-11-25 00:02:12 +0000 |
commit | 2cf979605997f5da705786cecdafc7381a9b7b3b (patch) | |
tree | 301fd6b243ecbe6f87a5518bf08f7d34023e4232 /Gem/develop/include | |
parent | ff8546615b4eccbffe44eafc457156bd66d31790 (diff) |
Gem f648ecc04dce1ef1380e4d28ced56aca733d6228 linux/amd64
built 'master:f648ecc04dce1ef1380e4d28ced56aca733d6228' for linux/amd64
Diffstat (limited to 'Gem/develop/include')
-rw-r--r-- | Gem/develop/include/Gem/Utils/nop.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Gem/develop/include/Gem/Utils/nop.h b/Gem/develop/include/Gem/Utils/nop.h new file mode 100644 index 0000000..0be005b --- /dev/null +++ b/Gem/develop/include/Gem/Utils/nop.h @@ -0,0 +1,29 @@ +/*----------------------------------------------------------------- +LOG + GEM - Graphics Environment for Multimedia + + nop.h + - contains nop functions/macros + - part of GEM + + Copyright (c) 2016 IOhannes m zmölnig. forum::für::umläute. IEM. zmoelnig@iem.at + For information on usage and redistribution, and for a DISCLAIMER OF ALL + WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution. + +-----------------------------------------------------------------*/ + +#ifndef _INCLUDE__GEM_UTILS_NOP_H_ +#define _INCLUDE__GEM_UTILS_NOP_H_ + +#if __STDC_VERSION__ >= 199901L +# define nop(...) +#else +# define nop +#endif + +static inline void gem__nop_post(void) { ; } +static inline void gem__nop_post(const char*fmt, ...) { ; } +#define nop_post gem__nop_post + +#endif // for header file + |