mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 03:30:22 +00:00
Fix warning on linux
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c9cf4f1a75
commit
35a14467ed
@ -52,14 +52,14 @@ static void runAtExitHandlers() {
|
||||
#include <sys/stat.h>
|
||||
#endif
|
||||
void *FunctionPointers[] = {
|
||||
(void *) stat,
|
||||
(void *) fstat,
|
||||
(void *) lstat,
|
||||
(void *) stat64,
|
||||
(void *) fstat64,
|
||||
(void *) lstat64,
|
||||
(void *) atexit,
|
||||
(void *) mknod
|
||||
(void *)(intptr_t) stat,
|
||||
(void *)(intptr_t) fstat,
|
||||
(void *)(intptr_t) lstat,
|
||||
(void *)(intptr_t) stat64,
|
||||
(void *)(intptr_t) fstat64,
|
||||
(void *)(intptr_t) lstat64,
|
||||
(void *)(intptr_t) atexit,
|
||||
(void *)(intptr_t) mknod
|
||||
};
|
||||
#endif // __linux__
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user