diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-26 23:05:53 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-26 23:05:53 -0400 |
commit | 47202bb358e63f1cfa3afc33ea3db418f3a5d399 (patch) | |
tree | 8d4025a1e9c5377e264d573fc11975baf9dd00f7 /src/lib | |
parent | fad923a1c32c266bb9c58994f77169b0e3c1df8d (diff) |
libc: unistd: Fix typo in header guard
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libc/include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libc/include/unistd.h b/src/lib/libc/include/unistd.h index 609fa0d..b50fc12 100644 --- a/src/lib/libc/include/unistd.h +++ b/src/lib/libc/include/unistd.h @@ -27,7 +27,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef _UNISTD_H 1 +#ifndef _UNISTD_H #define _UNISTD_H 1 #include <stddef.h> |