aboutsummaryrefslogtreecommitdiff
path: root/src/libc.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:29:29 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:29:29 -0700
commite2a3387cf777c5b190d70475e98ada83b9abbc4a (patch)
tree8e2018b8f38dedf0b849a0cfea588807ba0d63db /src/libc.lisp
parent09637e7c8918ce4d21bd7c703012baf792cc82b1 (diff)
downloadconsfigurator-e2a3387cf777c5b190d70475e98ada83b9abbc4a.tar.gz
drop plus signs & use underscores in C preprocessor constants
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/libc.lisp')
-rw-r--r--src/libc.lisp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libc.lisp b/src/libc.lisp
index 41a601b..5edb800 100644
--- a/src/libc.lisp
+++ b/src/libc.lisp
@@ -14,13 +14,13 @@
#+linux
(progn
- (constant (+CLONE_NEWCGROUP+ "CLONE_NEWCGROUP"))
- (constant (+CLONE_NEWIPC+ "CLONE_NEWIPC"))
- (constant (+CLONE_NEWNET+ "CLONE_NEWNET"))
- (constant (+CLONE_NEWNS+ "CLONE_NEWNS"))
- (constant (+CLONE_NEWPID+ "CLONE_NEWPID"))
- (constant (+CLONE_NEWTIME+ "CLONE_NEWTIME"))
- (constant (+CLONE_NEWUSER+ "CLONE_NEWUSER"))
- (constant (+CLONE_NEWUTS+ "CLONE_NEWUTS"))
+ (constant (CLONE_NEWCGROUP "CLONE_NEWCGROUP"))
+ (constant (CLONE_NEWIPC "CLONE_NEWIPC"))
+ (constant (CLONE_NEWNET "CLONE_NEWNET"))
+ (constant (CLONE_NEWNS "CLONE_NEWNS"))
+ (constant (CLONE_NEWPID "CLONE_NEWPID"))
+ (constant (CLONE_NEWTIME "CLONE_NEWTIME"))
+ (constant (CLONE_NEWUSER "CLONE_NEWUSER"))
+ (constant (CLONE_NEWUTS "CLONE_NEWUTS"))
- (constant (+NS_GET_OWNER_UID+ "NS_GET_OWNER_UID")))
+ (constant (NS_GET_OWNER_UID "NS_GET_OWNER_UID")))