]> git.ozlabs.org Git - yaboot.git/blobdiff - include/ctype.h
Allow yaboot to load relocatable kernel
[yaboot.git] / include / ctype.h
index afa36392297a341ce79e7d52a0231453776b7a89..5f545f7041c83847f537e6394f82b9cb5baa9436 100644 (file)
@@ -36,19 +36,26 @@ extern unsigned char _ctype[];
 
 static inline unsigned char __tolower(unsigned char c)
 {
-       if (isupper(c))
-               c -= 'A'-'a';
-       return c;
+     if (isupper(c))
+         c -= 'A'-'a';
+     return c;
 }
 
 static inline unsigned char __toupper(unsigned char c)
 {
-       if (islower(c))
-               c -= 'a'-'A';
-       return c;
+     if (islower(c))
+         c -= 'a'-'A';
+     return c;
 }
 
 #define tolower(c) __tolower(c)
 #define toupper(c) __toupper(c)
 
 #endif
+
+/*
+ * Local variables:
+ * c-file-style: "k&r"
+ * c-basic-offset: 5
+ * End:
+ */