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 /include/unistd.h | |
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 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unistd.h b/include/unistd.h index 71c1934db..5d3a4cb8f 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -908,7 +908,7 @@ extern int sethostname (__const char *__name, size_t __len) This call is restricted to the super-user. */ extern int sethostid (long int __id) __THROW __wur; -#if defined __UCLIBC_BSD_SPECIFIC__ || defined UCLIBC_INTERNAL +#if defined __UCLIBC_BSD_SPECIFIC__ || defined _LIBC /* Get and set the NIS (aka YP) domain name, if any. Called just like `gethostname' and `sethostname'. The NIS domain name is usually the empty string when not using NIS. */ @@ -1174,7 +1174,7 @@ extern char *ctermid (char *__s) __THROW; __END_DECLS -#ifdef UCLIBC_INTERNAL +#ifdef _LIBC #ifndef smallint_type /* if arch didn't override it in bits/wordsize.h */ #define smallint_type int #endif |