diff options
author | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-11-02 19:24:19 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-11-02 19:24:19 +0000 |
commit | d711a4860afcfecb23de8ea178acf2ae58650b2f (patch) | |
tree | 18ccf94d056bbe6b100b31be2b03bcf510873772 /StdLib/LibC/Main | |
parent | 77c9e7473c19f324a737b362444461d97565a4e6 (diff) | |
download | edk2-d711a4860afcfecb23de8ea178acf2ae58650b2f.tar.gz edk2-d711a4860afcfecb23de8ea178acf2ae58650b2f.tar.bz2 edk2-d711a4860afcfecb23de8ea178acf2ae58650b2f.zip |
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/edk2@12649 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib/LibC/Main')
-rw-r--r-- | StdLib/LibC/Main/Arm/flt_rounds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/StdLib/LibC/Main/Arm/flt_rounds.c b/StdLib/LibC/Main/Arm/flt_rounds.c index a64f447aab..7e052cc337 100644 --- a/StdLib/LibC/Main/Arm/flt_rounds.c +++ b/StdLib/LibC/Main/Arm/flt_rounds.c @@ -43,7 +43,7 @@ static const int map[] = { 1, /* round to nearest */
2, /* round to positive infinity */
3, /* round to negative infinity */
- 0 /* round to zero */
+ 0 /* round to zero */
};
/*
|