More GNUify non-GNU formatted functions calls throughout.

This commit is contained in:
Christopher Faylor
2002-09-23 00:31:31 +00:00
parent c87c8a533f
commit f0227ea3c7
23 changed files with 77 additions and 78 deletions

View File

@@ -19,10 +19,10 @@ extern "C"
/* Notes: we return a valid key even if id's low order 8 bits are 0. */
key_t
ftok(const char *path, int id)
ftok (const char *path, int id)
{
struct stat statbuf;
if (stat(path, &statbuf))
if (stat (path, &statbuf))
{
/* stat set the appropriate errno for us */
return (key_t) -1;