diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2010-02-08 16:24:06 +0100 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2010-02-08 16:24:06 +0100 |
commit | beb34ab0e65ff578d72543e4cc2740b9d2219dee (patch) | |
tree | 27dbbd14670d53cd848765cb5f56c0b5da24243e /include/rpc | |
parent | 7160571c5e3ed99949f3f592246a59d01f07fea3 (diff) |
libc: Fix typo in include/rpc
s/GNU_SOUCE/GNU_SOURCE/ in include/rcp/
Signed-off-by: Jason Woodward <jason.woodward@timesys.com>
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'include/rpc')
-rw-r--r-- | include/rpc/auth.h | 4 | ||||
-rw-r--r-- | include/rpc/rpc.h | 4 | ||||
-rw-r--r-- | include/rpc/types.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/rpc/auth.h b/include/rpc/auth.h index ee5396fc5..a156c56fe 100644 --- a/include/rpc/auth.h +++ b/include/rpc/auth.h @@ -47,8 +47,8 @@ #ifndef __FORCE_GLIBC #define __FORCE_GLIBC #endif -#ifndef _GNU_SOUCE -#define _GNU_SOUCE +#ifndef _GNU_SOURCE +#define _GNU_SOURCE #endif #define _(X) X #endif diff --git a/include/rpc/rpc.h b/include/rpc/rpc.h index dce1c3e71..abcab9e24 100644 --- a/include/rpc/rpc.h +++ b/include/rpc/rpc.h @@ -44,8 +44,8 @@ #ifndef __FORCE_GLIBC #define __FORCE_GLIBC #endif -#ifndef _GNU_SOUCE -#define _GNU_SOUCE +#ifndef _GNU_SOURCE +#define _GNU_SOURCE #endif #define _(X) X #include <features.h> diff --git a/include/rpc/types.h b/include/rpc/types.h index 469576e52..05f49c33a 100644 --- a/include/rpc/types.h +++ b/include/rpc/types.h @@ -39,8 +39,8 @@ #ifndef __FORCE_GLIBC #define __FORCE_GLIBC #endif -#ifndef _GNU_SOUCE -#define _GNU_SOUCE +#ifndef _GNU_SOURCE +#define _GNU_SOURCE #endif #define _(X) X #endif |