summaryrefslogtreecommitdiff
path: root/StdLib/Include/sys/EfiSysCall.h
diff options
context:
space:
mode:
Diffstat (limited to 'StdLib/Include/sys/EfiSysCall.h')
-rw-r--r--StdLib/Include/sys/EfiSysCall.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/StdLib/Include/sys/EfiSysCall.h b/StdLib/Include/sys/EfiSysCall.h
index 7b299108e6..a49eeda1fc 100644
--- a/StdLib/Include/sys/EfiSysCall.h
+++ b/StdLib/Include/sys/EfiSysCall.h
@@ -75,7 +75,7 @@ int isatty (int);
int fstat (int, struct stat *);
int lstat (const char *, struct stat *);
int stat (const char *, void *);
-// int chmod (const char *, mode_t);
+ int chmod (const char *, mode_t);
#endif // __STAT_SYSCALLS_DECLARED
// These are also declared in sys/types.h
@@ -110,10 +110,11 @@ int FindFreeFD (int MinFd);
*/
BOOLEAN ValidateFD (int fd, int IsOpen);
+char *getcwd (char *, size_t);
+int chdir (const char *);
+
/* These system calls don't YET have EFI implementations. */
int access (const char *path, int amode);
-int chdir (const char *);
-char *getcwd (char *, size_t);
int reboot (int, char *);
__END_DECLS