include types in correct order

This commit is contained in:
auronandace
2026-05-15 08:51:33 +01:00
parent b74eec62d4
commit ece3044fe8
+2 -2
View File
@@ -13,12 +13,12 @@
sys_includes = []
include_guard = "_RELIBC_SIGNAL_H"
after_includes = """
#include <bits/size-t.h> // for size_t from sys/types.h
#include <bits/pid-t.h> // for pid_t from sys/types.h
#include <bits/uid-t.h> // for uid_t from sys/types.h
#include <bits/pthread.h> // for pthread_t and pthread_attr_t from sys/types.h
#include <bits/sigset-t.h> // for sigset_t
#include <bits/size-t.h> // for size_t from sys/types.h
#include <bits/timespec.h> // for timespec from time.h
#include <bits/uid-t.h> // for uid_t from sys/types.h
#define SIG_DFL ((void (*)(int))0)
#define SIG_IGN ((void (*)(int))1)