summaryrefslogtreecommitdiff
path: root/StdLib/Include
diff options
context:
space:
mode:
Diffstat (limited to 'StdLib/Include')
-rw-r--r--StdLib/Include/sys/EfiSysCall.h2
-rw-r--r--StdLib/Include/unistd.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/StdLib/Include/sys/EfiSysCall.h b/StdLib/Include/sys/EfiSysCall.h
index bfbd14e1c5..1d01328609 100644
--- a/StdLib/Include/sys/EfiSysCall.h
+++ b/StdLib/Include/sys/EfiSysCall.h
@@ -291,7 +291,7 @@ __BEGIN_DECLS
@return
**/
- int stat (const char *, void *);
+ int stat (const char *, struct stat *);
/**
@param[in]
diff --git a/StdLib/Include/unistd.h b/StdLib/Include/unistd.h
index 2134f15765..4d738c64b6 100644
--- a/StdLib/Include/unistd.h
+++ b/StdLib/Include/unistd.h
@@ -39,6 +39,7 @@ pid_t tcgetpgrp(int);
char *getpass(const char *);
int usleep(useconds_t);
unsigned int sleep(unsigned int);
+char *basename(char *path);
// Networking
long gethostid(void);