diff options
| author | rajdakin <rajdakin@gmail.com> | 2024-07-09 08:21:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-09 08:21:21 +0200 |
| commit | 605d5a29c067fa4834340182ab96438673d09a12 (patch) | |
| tree | 3fc4d93603319405ab4a3f7a8c0a59eef1c5d71f /src/libtools/static_libc.h | |
| parent | fdc7e9d1e4d4ab0dd7e895645739fd57e416d5e3 (diff) | |
| download | box64-605d5a29c067fa4834340182ab96438673d09a12.tar.gz box64-605d5a29c067fa4834340182ab96438673d09a12.zip | |
Fixes (#1659)
* Replaced some tabs with spaces * Fixed some signedness warnings * Added more debug info * Fixed an improper alignment * [WRAPPEDWAYLAND] Added return statements to wrappers * [EMU] [AVX] Fixed some issues * [ARM DYNAREC] Fixed some minor warnings * [ARM DYNAREC] Removed unused macro arguments * [EMU] Fixed a noisy warning * [ARM DYNAREC] Removed "empty body" warnings * [EMU] Fixed an opcode in dynarec, non-cosim builds * [LA64 DYNAREC] Minor warning fixes * [LA64 DYNAREC] Fixed empty body warnings * [LA64 DYNAREC] Added parenthesis around assignments in if statements * [LA64 DYNAREC] Fixed missing parenthesis in macro definitions * [RV64 DYNAREC] Fixed minor warnings * [RV64 DYNAREC] Fixed wrong/missing parentheses * [WRAPPER] Fixed the WaylandClient callback signatures
Diffstat (limited to 'src/libtools/static_libc.h')
| -rw-r--r-- | src/libtools/static_libc.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libtools/static_libc.h b/src/libtools/static_libc.h index c5dd8a59..802d8dc3 100644 --- a/src/libtools/static_libc.h +++ b/src/libtools/static_libc.h @@ -278,12 +278,12 @@ extern size_t __strtoul_internal(void*, void*, int, int); extern uint64_t __strtoull_internal(void*, void*, int, int); extern size_t __strtoull_l(void*, void*, int, void*); extern size_t __strxfrm_l(void*, void*, size_t, size_t); -//extern void svc_exit(void); -//extern void svc_getreq(int); -//extern void svc_getreq_common(int); -//extern void svc_getreq_poll(struct pollfd *, int); -//extern void svc_run(void); -//extern void svc_unregister(u_long, u_long); +//extern void svc_exit(void); +//extern void svc_getreq(int); +//extern void svc_getreq_common(int); +//extern void svc_getreq_poll(struct pollfd *, int); +//extern void svc_run(void); +//extern void svc_unregister(u_long, u_long); //extern int __sysctl(void*, int, void*, void*, void*, size_t); //extern int sysctl(void*, int, void*, void*, void*, size_t); extern void thrd_exit(void*); @@ -316,4 +316,4 @@ extern char *__xpg_basename(char *__path); //extern int xdr_void(); void* dummy_pFLp(size_t a, void* b) {} void* dummy_pFpLLp(void* a, size_t b, size_t c, void* d) {} -void* dummy__ZnwmSt11align_val_tRKSt9nothrow_t(size_t a, size_t b, void* c) {} \ No newline at end of file +void* dummy__ZnwmSt11align_val_tRKSt9nothrow_t(size_t a, size_t b, void* c) {} |