diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-10-07 01:53:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-10-07 01:53:04 +0000 |
commit | 6685267a72235d5384bd401ba990bc805fac8aac (patch) | |
tree | 178176339cafea502ff4278c9718e0fc68f44427 | |
parent | 4c3a795a126a64f3d82e5006bf43caef9ab346e3 (diff) |
uClibc does not support getutent_r, getutid_r, and getutline_r,
and SuSv3 does not require r specify them. So kill the prototypes.
-rw-r--r-- | include/utmp.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/utmp.h b/include/utmp.h index 64b10889b..ce251c137 100644 --- a/include/utmp.h +++ b/include/utmp.h @@ -79,19 +79,6 @@ extern struct utmp *getutline (__const struct utmp *__line) __THROW; /* Write out entry pointed to by UTMP_PTR into the utmp file. */ extern struct utmp *pututline (__const struct utmp *__utmp_ptr) __THROW; - -#ifdef __USE_MISC -/* Reentrant versions of the file for handling utmp files. */ -extern int getutent_r (struct utmp *__buffer, struct utmp **__result) __THROW; - -extern int getutid_r (__const struct utmp *__id, struct utmp *__buffer, - struct utmp **__result) __THROW; - -extern int getutline_r (__const struct utmp *__line, - struct utmp *__buffer, struct utmp **__result) __THROW; - -#endif /* Use misc. */ - __END_DECLS #endif /* utmp.h */ |