From 09e549fdb78a02d0271f3856c03f186c54f004ab Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 30 Mar 2023 19:53:58 +0300 Subject: [PATCH] Add stub headers --- include/dlfcn.h | 4 ++++ include/pthread.h | 4 ++++ include/sched.h | 4 ++++ include/stdio.h | 4 ++++ include/strings.h | 4 ++++ include/sys/stat.h | 4 ++++ include/sys/time.h | 4 ++++ include/sys/types.h | 4 ++++ include/unistd.h | 4 ++++ include/wchar.h | 4 ++++ 10 files changed, 40 insertions(+) create mode 100644 include/dlfcn.h create mode 100644 include/pthread.h create mode 100644 include/sched.h create mode 100644 include/stdio.h create mode 100644 include/strings.h create mode 100644 include/sys/stat.h create mode 100644 include/sys/time.h create mode 100644 include/sys/types.h create mode 100644 include/unistd.h create mode 100644 include/wchar.h diff --git a/include/dlfcn.h b/include/dlfcn.h new file mode 100644 index 0000000..5fc9dd8 --- /dev/null +++ b/include/dlfcn.h @@ -0,0 +1,4 @@ +#ifndef _DLFCN_H +#define _DLFCN_H + +#endif // !_DLFCN_H diff --git a/include/pthread.h b/include/pthread.h new file mode 100644 index 0000000..a717501 --- /dev/null +++ b/include/pthread.h @@ -0,0 +1,4 @@ +#ifndef _PTHREAD_H +#define _PTHREAD_H + +#endif // !_PTHREAD_H diff --git a/include/sched.h b/include/sched.h new file mode 100644 index 0000000..bcf9d2c --- /dev/null +++ b/include/sched.h @@ -0,0 +1,4 @@ +#ifndef _SCHED_H +#define _SCHED_H + +#endif // !_SCHED_H diff --git a/include/stdio.h b/include/stdio.h new file mode 100644 index 0000000..b6d4e39 --- /dev/null +++ b/include/stdio.h @@ -0,0 +1,4 @@ +#ifndef _STDIO_H +#define _STDIO_H + +#endif // !_STDIO_H diff --git a/include/strings.h b/include/strings.h new file mode 100644 index 0000000..e445ee8 --- /dev/null +++ b/include/strings.h @@ -0,0 +1,4 @@ +#ifndef _STRINGS_H +#define _STRINGS_H + +#endif // !_STRINGS_H diff --git a/include/sys/stat.h b/include/sys/stat.h new file mode 100644 index 0000000..1bee73b --- /dev/null +++ b/include/sys/stat.h @@ -0,0 +1,4 @@ +#ifndef _SYS_STAT_H +#define _SYS_STAT_H + +#endif // !_SYS_STAT_H diff --git a/include/sys/time.h b/include/sys/time.h new file mode 100644 index 0000000..ef9ed6b --- /dev/null +++ b/include/sys/time.h @@ -0,0 +1,4 @@ +#ifndef _SYS_TIME_H +#define _SYS_TIME_H + +#endif // !_SYS_TIME_H diff --git a/include/sys/types.h b/include/sys/types.h new file mode 100644 index 0000000..62d2521 --- /dev/null +++ b/include/sys/types.h @@ -0,0 +1,4 @@ +#ifndef _SYS_TYPES_H +#define _SYS_TYPES_H + +#endif // !_SYS_TYPES_H diff --git a/include/unistd.h b/include/unistd.h new file mode 100644 index 0000000..3c78d05 --- /dev/null +++ b/include/unistd.h @@ -0,0 +1,4 @@ +#ifndef _UNISTD_H +#define _UNISTD_H + +#endif // !_UNISTD_H diff --git a/include/wchar.h b/include/wchar.h new file mode 100644 index 0000000..a045c6f --- /dev/null +++ b/include/wchar.h @@ -0,0 +1,4 @@ +#ifndef _WCHAR_H +#define _WCHAR_H + +#endif // !_WCHAR_H