mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
* stdlib/longlong.h: Provide __P definition if not already defined.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
1999-06-21 Ulrich Drepper <drepper@cygnus.com>
|
1999-06-21 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* stdlib/longlong.h: Provide __P definition if not already
|
||||||
|
defined.
|
||||||
|
|
||||||
* include/wchar.h: Use __gnuc_va_list not va_list in prototype.
|
* include/wchar.h: Use __gnuc_va_list not va_list in prototype.
|
||||||
|
|
||||||
1999-06-18 Thorsten Kukuk <kukuk@suse.de>
|
1999-06-18 Thorsten Kukuk <kukuk@suse.de>
|
||||||
|
@ -42,6 +42,15 @@
|
|||||||
#define __MPN(x) __##x
|
#define __MPN(x) __##x
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef __P
|
||||||
|
# if defined __GNUC__ || (defined (__STDC__) && __STDC__) \
|
||||||
|
|| defined (__cplusplus)
|
||||||
|
# define __P(args) args
|
||||||
|
# else
|
||||||
|
# define __P(args) ()
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define auxiliary asm macros.
|
/* Define auxiliary asm macros.
|
||||||
|
|
||||||
1) umul_ppmm(high_prod, low_prod, multipler, multiplicand) multiplies two
|
1) umul_ppmm(high_prod, low_prod, multipler, multiplicand) multiplies two
|
||||||
|
Reference in New Issue
Block a user