diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-04-12 15:09:25 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-04-12 15:50:20 +0200 |
commit | a115ee502fca8b1eb8ce327d764562d3ae669954 (patch) | |
tree | 4e70643d75345330d2875f8c7a4076ee6128d427 | |
parent | 850da1f578f7694e6ed41008db346c14f4f89f3b (diff) | |
download | uClibc-alpine-a115ee502fca8b1eb8ce327d764562d3ae669954.tar.bz2 uClibc-alpine-a115ee502fca8b1eb8ce327d764562d3ae669954.tar.xz |
attribute_optimize: fix typo with args
curious how 308f5c6e5fd56ea3d1a5512e34388aad788f1180 ever worked.. :P
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | include/libc-symbols.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index 2729d306c..4615a6aa5 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -86,9 +86,9 @@ #endif #if defined __GNUC__ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) -# define attribute_optimize(lvl) __attribute__ ((optimize(x))) +# define attribute_optimize(x) __attribute__ ((optimize(x))) #else -# define attribute_optimize(lvl) +# define attribute_optimize(x) #endif #define attribute_unused __attribute__ ((unused)) |