diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-21 20:09:13 +0200 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-08-19 12:27:12 -0700 |
| commit | f1d095f7ac3f8bd7521cc3b659db36d8ec247a62 (patch) | |
| tree | cf68a75fae4a342b0196cc604b1cb81a271e7316 /libc | |
| parent | 0e8f5d2c9aa39a19297bd1b7d5b56a92135dfa57 (diff) | |
| download | uClibc-alpine-f1d095f7ac3f8bd7521cc3b659db36d8ec247a62.tar.bz2 uClibc-alpine-f1d095f7ac3f8bd7521cc3b659db36d8ec247a62.tar.xz | |
s/UCLIBC_INTERNAL/_LIBC/g
Undo my old mistake. I added UCLIBC_INTERNAL define,
but later I realized _LIBC is doing exactly the same thing.
This change converts all usages of UCLIBC_INTERNAL to _LIBC,
removing all instances of UCLIBC_INTERNAL.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/sysdeps/linux/common/bits/types.h | 4 | ||||
| -rw-r--r-- | libc/sysdeps/linux/i386/bits/wordsize.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/common/bits/types.h b/libc/sysdeps/linux/common/bits/types.h index 141db43d3..21333267f 100644 --- a/libc/sysdeps/linux/common/bits/types.h +++ b/libc/sysdeps/linux/common/bits/types.h @@ -29,7 +29,7 @@ #define __need_size_t #include <stddef.h> -#ifdef UCLIBC_INTERNAL +#ifdef _LIBC #include <bits/kernel_types.h> #endif @@ -200,7 +200,7 @@ __STD_TYPE __U32_TYPE __socklen_t; #undef __STD_TYPE -#ifdef UCLIBC_INTERNAL +#ifdef _LIBC /* Used in `struct shmid_ds'. */ typedef __kernel_ipc_pid_t __ipc_pid_t; #endif diff --git a/libc/sysdeps/linux/i386/bits/wordsize.h b/libc/sysdeps/linux/i386/bits/wordsize.h index 7c3cd9c7d..f4c2144e9 100644 --- a/libc/sysdeps/linux/i386/bits/wordsize.h +++ b/libc/sysdeps/linux/i386/bits/wordsize.h @@ -18,7 +18,7 @@ #define __WORDSIZE 32 -#ifdef UCLIBC_INTERNAL +#ifdef _LIBC #ifndef smallint_type #define smallint_type char #endif |
