diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-21 20:09:13 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-21 20:09:13 +0200 |
commit | 4a2724d93bcd8626f2cebead9b263b4f9f86541d (patch) | |
tree | 8292b05838efa21b59e5a4f92a3f9eb550b1a4cf /libc/sysdeps/linux/common/bits | |
parent | 55415cc7b93c415df0592ee350524d8c083cecc4 (diff) |
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>
Diffstat (limited to 'libc/sysdeps/linux/common/bits')
-rw-r--r-- | libc/sysdeps/linux/common/bits/types.h | 4 |
1 files changed, 2 insertions, 2 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 |