| OLD | NEW |
| 1 #ifndef LIBC_H | 1 #ifndef LIBC_H |
| 2 #define LIBC_H | 2 #define LIBC_H |
| 3 | 3 |
| 4 #include <stdlib.h> | 4 #include <stdlib.h> |
| 5 #include <stdio.h> | 5 #include <stdio.h> |
| 6 #include <limits.h> | 6 #include <limits.h> |
| 7 | 7 |
| 8 struct __locale_map; | 8 struct __locale_map; |
| 9 | 9 |
| 10 struct __locale_struct { | 10 struct __locale_struct { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 void __synccall(void (*)(void*), void*); | 57 void __synccall(void (*)(void*), void*); |
| 58 int __setxid(int, int, int, int); | 58 int __setxid(int, int, int, int); |
| 59 | 59 |
| 60 extern char** __environ; | 60 extern char** __environ; |
| 61 | 61 |
| 62 #undef weak_alias | 62 #undef weak_alias |
| 63 #define weak_alias(old, new) \ | 63 #define weak_alias(old, new) \ |
| 64 extern __typeof(old) new __attribute__((weak, alias(#old))) | 64 extern __typeof(old) new __attribute__((weak, alias(#old))) |
| 65 | 65 |
| 66 #undef LFS64_2 | |
| 67 #define LFS64_2(x, y) weak_alias(x, y) | |
| 68 | |
| 69 #undef LFS64 | |
| 70 #define LFS64(x) LFS64_2(x, x##64) | |
| 71 | |
| 72 #endif | 66 #endif |
| OLD | NEW |