summaryrefslogtreecommitdiff
path: root/Kernel/UnixTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/UnixTypes.h')
-rw-r--r--Kernel/UnixTypes.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/Kernel/UnixTypes.h b/Kernel/UnixTypes.h
index 6084a23985..46a4799718 100644
--- a/Kernel/UnixTypes.h
+++ b/Kernel/UnixTypes.h
@@ -1,12 +1,8 @@
#pragma once
-extern "C" {
-
#define FD_SETSIZE 64
struct fd_set { unsigned char bits[FD_SETSIZE / 8]; };
-namespace Unix {
-
#define WNOHANG 1
#define SIG_DFL ((void*)0)
@@ -295,8 +291,3 @@ struct stat {
time_t st_mtime; /* time of last modification */
time_t st_ctime; /* time of last status change */
};
-
-}
-
-}
-