Bug #10560: Code-Cleanup: function declarations () -> (void)

X.Org Bugzilla #10560: <https://bugs.freedesktop.org/show_bug.cgi?id=10560>
Patch #9511 <https://bugs.freedesktop.org/attachment.cgi?id=9511>
This commit is contained in:
Stefan Huehner 2007-04-09 14:33:15 -07:00 committed by Alan Coopersmith
commit 1f6741db19
23 changed files with 68 additions and 68 deletions

View file

@ -86,13 +86,13 @@ static int globalTotalGlyphPrivateSize = 0;
static int glyphPrivateCount = 0;
void
ResetGlyphPrivates ()
ResetGlyphPrivates (void)
{
glyphPrivateCount = 0;
}
int
AllocateGlyphPrivateIndex ()
AllocateGlyphPrivateIndex (void)
{
return glyphPrivateCount++;
}