projects
/
akaros.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Rework memory allocation flags [1/2]
[akaros.git]
/
kern
/
include
/
ctype.h
diff --git
a/kern/include/ctype.h
b/kern/include/ctype.h
index
653589e
..
c60780f
100644
(file)
--- a/
kern/include/ctype.h
+++ b/
kern/include/ctype.h
@@
-1,5
+1,4
@@
-#ifndef _LINUX_CTYPE_H
-#define _LINUX_CTYPE_H
+#pragma once
/*
* NOTE! This ctype does not handle EOF like the standard C
@@
-66,5
+65,3
@@
static inline int isodigit(const char c)
{
return c >= '0' && c <= '7';
}
-
-#endif