Make private symbols actually private (2/n).

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@18023 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Alexander Malmberg 2003-11-02 01:28:24 +00:00
parent 41ce702299
commit baa14f193b
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2003-11-02 02:27 Alexander Malmberg <alexander@malmberg.org>
* Source/gsc/GSStreamContext.m (fpfloat, writeHex): Make static.
2003-10-29 Yen-Ju Chen <yjchenx@hotmail.com>
* Source/x11/XGServerWindow.m ([XGServer -_setupRootWindow]): Always

View file

@ -46,7 +46,7 @@
@end
/* Print a floating point number regardless of localization */
void
static void
fpfloat(FILE *stream, float f)
{
char buffer[80], *p;
@ -797,7 +797,7 @@ fpfloat(FILE *stream, float f)
static char *hexdigits = "0123456789abcdef";
void
static void
writeHex(FILE *gstream, const unsigned char *data, int count)
{
int i;