(GSCurrentThreadDictionary, NSStandardLibraryPaths): Fix the prototypes.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18334 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
alexm 2004-01-08 00:52:03 +00:00
parent 77e51599a4
commit ab0bebf555
2 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,13 @@
2004-01-08 01:48 Alexander Malmberg <alexander@malmberg.org>
* Headers/Additions/GNUstepBase/GSCategories.h
(GSCurrentThreadDictionary, NSStandardLibraryPaths): Fix the
prototypes (add explicit void:s).
* Source/GSAttributedString.m (_setAttributesFrom): Initialize
range in the aRange.length==0 case. (Found by Andrew Ruder using
valgrind.)
2004-01-06 Adam Fedor <fedor@gnu.org>
* Documentation/Base: New directory

View file

@ -300,7 +300,7 @@ typedef enum _NSGNUstepStringEncoding
The implementations for gnustep-base reside in the
corresponding source files of -base.
*/
GS_EXPORT NSArray *NSStandardLibraryPaths();
GS_EXPORT NSArray *NSStandardLibraryPaths(void);
GS_EXPORT void NSDecimalFromComponents(NSDecimal *result,
unsigned long long mantissa,
short exponent, BOOL negative);
@ -310,7 +310,7 @@ GS_EXPORT BOOL GSDebugSet(NSString *level);
GS_EXPORT NSString *GetEncodingName(NSStringEncoding availableEncodingValue);
GS_EXPORT NSString *GSEncodingName(NSStringEncoding availableEncodingValue);
GS_EXPORT NSMutableDictionary *GSCurrentThreadDictionary();
GS_EXPORT NSMutableDictionary *GSCurrentThreadDictionary(void);
GS_EXPORT NSString *GSDebugMethodMsg(id obj, SEL sel, const char *file,
int line, NSString *fmt);