mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
2000-10-19 Ulrich Drepper <drepper@redhat.com> * locales/iso14651_t1: Handle Macedonian correctly. Patch by Damjan <arhiv@freemail.org.mk>.
This commit is contained in:
@ -17,6 +17,12 @@ extern int __strncasecmp (__const char *__s1, __const char *__s2,
|
|||||||
size_t __n)
|
size_t __n)
|
||||||
__attribute_pure__;
|
__attribute_pure__;
|
||||||
|
|
||||||
|
extern int __strcasecmp (__const char *__s1, __const char *__s2)
|
||||||
|
__attribute_pure__;
|
||||||
|
|
||||||
|
extern char *__strcasestr (__const char *__haystack, __const char *__needle)
|
||||||
|
__attribute_pure__;
|
||||||
|
|
||||||
extern char *__strdup (__const char *__string)
|
extern char *__strdup (__const char *__string)
|
||||||
__attribute_malloc__;
|
__attribute_malloc__;
|
||||||
extern char *__strndup (__const char *__string, size_t __n)
|
extern char *__strndup (__const char *__string, size_t __n)
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2000-10-19 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* locales/iso14651_t1: Handle Macedonian correctly.
|
||||||
|
Patch by Damjan <arhiv@freemail.org.mk>.
|
||||||
|
|
||||||
2000-10-06 Ulrich Drepper <drepper@redhat.com>
|
2000-10-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* locales/iso14651_t1: Add currency symbols.
|
* locales/iso14651_t1: Add currency symbols.
|
||||||
|
@ -73,7 +73,7 @@ __new_semctl (int semid, int semnum, int cmd, ...)
|
|||||||
|
|
||||||
#if __ASSUME_32BITUIDS > 0
|
#if __ASSUME_32BITUIDS > 0
|
||||||
return INLINE_SYSCALL (semctl, 4, semid, semnum, cmd | __IPC_64,
|
return INLINE_SYSCALL (semctl, 4, semid, semnum, cmd | __IPC_64,
|
||||||
CHECK_SEMCTL (&arg, semid, cmd | __IPC_64));
|
CHECK_SEMCTL (&arg, semid, cmd | __IPC_64)->array);
|
||||||
#else
|
#else
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case SEM_STAT:
|
case SEM_STAT:
|
||||||
@ -82,7 +82,7 @@ __new_semctl (int semid, int semnum, int cmd, ...)
|
|||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return INLINE_SYSCALL (semctl, 4, semid, semnum, cmd,
|
return INLINE_SYSCALL (semctl, 4, semid, semnum, cmd,
|
||||||
CHECK_SEMCTL (&arg, semid, cmd));
|
CHECK_SEMCTL (&arg, semid, cmd)->array);
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -93,7 +93,7 @@ __new_semctl (int semid, int semnum, int cmd, ...)
|
|||||||
/* Unfortunately there is no way how to find out for sure whether
|
/* Unfortunately there is no way how to find out for sure whether
|
||||||
we should use old or new semctl. */
|
we should use old or new semctl. */
|
||||||
result = INLINE_SYSCALL (semctl, 4, semid, semnum, cmd | __IPC_64,
|
result = INLINE_SYSCALL (semctl, 4, semid, semnum, cmd | __IPC_64,
|
||||||
CHECK_SEMCTL (&arg, semid, cmd | __IPC_64));
|
CHECK_SEMCTL (&arg, semid, cmd | __IPC_64)->array);
|
||||||
if (result != -1 || errno != EINVAL)
|
if (result != -1 || errno != EINVAL)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
@ -113,7 +113,7 @@ __new_semctl (int semid, int semnum, int cmd, ...)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
result = INLINE_SYSCALL (semctl, 4, semid, semnum, cmd,
|
result = INLINE_SYSCALL (semctl, 4, semid, semnum, cmd,
|
||||||
CHECK_SEMCTL (&arg, semid, cmd));
|
CHECK_SEMCTL (&arg, semid, cmd)->array);
|
||||||
if (result != -1 && cmd != IPC_SET)
|
if (result != -1 && cmd != IPC_SET)
|
||||||
{
|
{
|
||||||
memset(buf, 0, sizeof(*buf));
|
memset(buf, 0, sizeof(*buf));
|
||||||
|
@ -13,6 +13,7 @@ rt_sigqueueinfo - rt_sigqueueinfo i:iip __syscall_rt_sigqueueinfo
|
|||||||
rt_sigsuspend - rt_sigsuspend i:pi __syscall_rt_sigsuspend
|
rt_sigsuspend - rt_sigsuspend i:pi __syscall_rt_sigsuspend
|
||||||
rt_sigtimedwait - rt_sigtimedwait i:pppi __syscall_rt_sigtimedwait
|
rt_sigtimedwait - rt_sigtimedwait i:pppi __syscall_rt_sigtimedwait
|
||||||
s_fcntl fcntl fcntl i:iiF __syscall_fcntl
|
s_fcntl fcntl fcntl i:iiF __syscall_fcntl
|
||||||
|
s_fcntl64 fcntl64 fcntl64 i:iiF __syscall_fcntl64
|
||||||
s_fstat64 fxstat64 fstat64 i:ip __syscall_fstat64
|
s_fstat64 fxstat64 fstat64 i:ip __syscall_fstat64
|
||||||
s_ftruncate64 ftruncate64 ftruncate64 i:iii __syscall_ftruncate64
|
s_ftruncate64 ftruncate64 ftruncate64 i:iii __syscall_ftruncate64
|
||||||
s_getcwd getcwd getcwd i:pi __syscall_getcwd
|
s_getcwd getcwd getcwd i:pi __syscall_getcwd
|
||||||
|
Reference in New Issue
Block a user