summaryrefslogtreecommitdiff
path: root/edk2/StdLibPrivateInternalFiles
diff options
context:
space:
mode:
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-11-02 19:24:19 +0000
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2011-11-02 19:24:19 +0000
commit85fd641df391df087921d98d267ec0689375df8e (patch)
treebc169641ef0d9bfa417a598aa44e1f294c04d741 /edk2/StdLibPrivateInternalFiles
parentb6feaa85253f3213ea0a151d59f8fa801405db1e (diff)
StdLib: Add directory access functions to PosixLib.
Update <dirent.h> and <sys/dirent.h> to latest version. Enable the tempnam function. Fix assignments within predicate expressions so that it is clear where assignment is intended and where comparison occurs. Remove internal.h and DirFunctions.c with its non-portable opendir, closedir, and readdir functions. Add modified versions of the NetBSD opendir, closedir, and readdir functions. Fix the declaration of stat() to be standards compliant and consistent with code. Clean up indentation and declarations of non-existent objects. Signed-off-by: darylm503 Reviewed-by: lgrosenb Reviewed-by: lpleahy Reviewed-by: jljusten git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk@12649 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'edk2/StdLibPrivateInternalFiles')
-rw-r--r--edk2/StdLibPrivateInternalFiles/Include/extern.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/edk2/StdLibPrivateInternalFiles/Include/extern.h b/edk2/StdLibPrivateInternalFiles/Include/extern.h
index ff37d1c0a..fc39d5290 100644
--- a/edk2/StdLibPrivateInternalFiles/Include/extern.h
+++ b/edk2/StdLibPrivateInternalFiles/Include/extern.h
@@ -43,9 +43,9 @@ char *__dtoa(double, int, int, int *, int *, char **);
void __freedtoa(char *);
int __sysctl(const int *, unsigned int, void *, size_t *, const void *, size_t);
-struct sigaction;
-int __sigaction_sigtramp(int, const struct sigaction *,
- struct sigaction *, const void *, int);
+//struct sigaction;
+//int __sigaction_sigtramp(int, const struct sigaction *,
+// struct sigaction *, const void *, int);
#ifdef WIDE_DOUBLE
char *__hdtoa(double, const char *, int, int *, int *, char **);
@@ -53,15 +53,15 @@ int __sigaction_sigtramp(int, const struct sigaction *,
char *__ldtoa(long double *, int, int, int *, int *, char **);
#endif
-struct syslog_data;
-void syslog_ss(int, struct syslog_data *, const char *, ...)
- __attribute__((__format__(__printf__,3,4)));
-void vsyslog_ss(int, struct syslog_data *, const char *, _BSD_VA_LIST_);
+//struct syslog_data;
+//void syslog_ss(int, struct syslog_data *, const char *, ...)
+// __attribute__((__format__(__printf__,3,4)));
+//void vsyslog_ss(int, struct syslog_data *, const char *, _BSD_VA_LIST_);
-int snprintf_ss(char * __restrict, size_t, const char * __restrict, ...)
- __attribute__((__format__(__printf__, 3, 4)));
-int vsnprintf_ss(char * __restrict, size_t, const char * __restrict,
- _BSD_VA_LIST_) __attribute__((__format__(__printf__, 3, 0)));
+//int snprintf_ss(char * __restrict, size_t, const char * __restrict, ...)
+// __attribute__((__format__(__printf__, 3, 4)));
+//int vsnprintf_ss(char * __restrict, size_t, const char * __restrict,
+// _BSD_VA_LIST_) __attribute__((__format__(__printf__, 3, 0)));
void Efi2Tm( EFI_TIME *ET, struct tm *BT);
time_t Efi2Time( EFI_TIME *EfiBDtime);