chiark / gitweb /
core: fix serialization of client tracker
[elogind.git] / src / core / syscall-list.h
index 503838b7fbd61422cc13f94f5841c27bfd5efbfd..37efc5681dd0368a8c9f9067db711ff8c71f1d3c 100644 (file)
@@ -1,7 +1,6 @@
 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
-#ifndef foosyscalllisthfoo
-#define foosyscalllisthfoo
+#pragma once
 
 /***
   This file is part of systemd.
@@ -24,7 +23,7 @@
 
 #if defined __x86_64__ && defined __ILP32__
 /* The x32 ABI defines all of its syscalls with bit 30 set, which causes
-   issues when attempting to use syscalls as simple indicies into an array.
+   issues when attempting to use syscalls as simple indices into an array.
    Instead, use the syscall id & ~SYSCALL_MASK as the index, and | the
    internal id with the syscall mask as needed.
 */
@@ -40,5 +39,3 @@ const char *syscall_to_name(int id);
 int syscall_from_name(const char *name);
 
 int syscall_max(void);
-
-#endif