From e2a3387cf777c5b190d70475e98ada83b9abbc4a Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sat, 16 Apr 2022 15:29:29 -0700 Subject: drop plus signs & use underscores in C preprocessor constants Signed-off-by: Sean Whitton --- src/libc.lisp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/libc.lisp') 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"))) -- cgit v1.2.3