Compare commits
No commits in common. "71df91b4a0663007805b5d319c7fed6e9e1959d0" and "5b9421731693a53fff0b0288ca45185c318d7318" have entirely different histories.
71df91b4a0
...
5b94217316
@ -98,13 +98,8 @@ extern "C"
|
||||
* endptr if nonnull. */
|
||||
unsigned long strtoul(const char* str, char** endptr, int base);
|
||||
|
||||
/* Parse an integer of the specified base from a string, storing the first non-number character in endptr if
|
||||
* nonnull. */
|
||||
long long strtoll(const char* str, char** endptr, int base);
|
||||
|
||||
/* Parse an unsigned integer of the specified base from a string, storing the first non-number character in
|
||||
* endptr if nonnull. */
|
||||
unsigned long long strtoull(const char* str, char** endptr, int base);
|
||||
#define strtoll strtol
|
||||
#define strtoull strtoul
|
||||
|
||||
/* Return the next pseudorandom number. */
|
||||
int rand();
|
||||
|
@ -22,7 +22,6 @@
|
||||
#define _POSIX_SYNCHRONIZED_IO 200112L
|
||||
#define _POSIX_SAVED_IDS 200112L
|
||||
#define _POSIX_VDISABLE (-2)
|
||||
#define _POSIX_VERSION 200112L
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
|
@ -101,16 +101,6 @@ extern "C"
|
||||
return rc;
|
||||
}
|
||||
|
||||
long long strtoll(const char* str, char** endptr, int base)
|
||||
{
|
||||
return strtol(str, endptr, base);
|
||||
}
|
||||
|
||||
unsigned long long strtoull(const char* str, char** endptr, int base)
|
||||
{
|
||||
return strtoul(str, endptr, base);
|
||||
}
|
||||
|
||||
__noreturn void abort()
|
||||
{
|
||||
// First, try to unblock SIGABRT and then raise it.
|
||||
|
0
tools/exec/luna-pkg-config
Executable file → Normal file
0
tools/exec/luna-pkg-config
Executable file → Normal file
Loading…
Reference in New Issue
Block a user