* libmisc/utmp.c, libmisc/age.c, libmisc/shell.c, lib/groupio.c,

lib/groupio.h, lib/sgroupio.c, lib/sgroupio.h, lib/shadowio.c,
	lib/pwio.c, lib/commonio.c, lib/shadowio.h, lib/pwio.h,
	lib/commonio.h, lib/prototypes.h: Added splint annotations.
This commit is contained in:
nekral-guest
2009-04-22 21:21:14 +00:00
parent aebddca35d
commit 2c0f3ef707
15 changed files with 71 additions and 68 deletions

View File

@@ -49,7 +49,7 @@ static void *shadow_dup (const void *ent)
return __spw_dup (sp);
}
static void shadow_free (void *ent)
static void shadow_free (/*@out*//*@only@*/void *ent)
{
struct spwd *sp = ent;
@@ -108,7 +108,7 @@ int spw_setdbname (const char *filename)
return commonio_setname (&shadow_db, filename);
}
const char *spw_dbname (void)
/*@observer@*/const char *spw_dbname (void)
{
return shadow_db.filename;
}
@@ -128,7 +128,7 @@ int spw_open (int mode)
return commonio_open (&shadow_db, mode);
}
const struct spwd *spw_locate (const char *name)
/*@null@*/const struct spwd *spw_locate (const char *name)
{
return commonio_locate (&shadow_db, name);
}
@@ -148,7 +148,7 @@ int spw_rewind (void)
return commonio_rewind (&shadow_db);
}
const struct spwd *spw_next (void)
/*@null@*/const struct spwd *spw_next (void)
{
return commonio_next (&shadow_db);
}