diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-19 19:07:30 +0100 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-22 11:20:05 -0800 |
commit | 9a0c2817e8011d3ce5de9fd1488cf28febce5f2b (patch) | |
tree | 69d58067d81214da0e81b00b2ef04ac9b8673c67 | |
parent | 13ab416ebb5eca12e7f5356378e9b0873dc8db24 (diff) | |
download | uClibc-alpine-9a0c2817e8011d3ce5de9fd1488cf28febce5f2b.tar.bz2 uClibc-alpine-9a0c2817e8011d3ce5de9fd1488cf28febce5f2b.tar.xz |
disable libutil related prototypes if asked to
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r-- | include/utmp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/utmp.h b/include/utmp.h index c198ede35..182f45e1c 100644 --- a/include/utmp.h +++ b/include/utmp.h @@ -37,6 +37,7 @@ __BEGIN_DECLS +#ifdef __UCLIBC_HAS_LIBUTIL__ /* Make FD be the controlling terminal, stdin, stdout, and stderr; then close FD. Returns 0 on success, nonzero on error. */ extern int login_tty (int __fd) __THROW; @@ -51,6 +52,7 @@ extern int logout (__const char *__ut_line) __THROW; /* Append to wtmp an entry for the current time and the given info. */ extern void logwtmp (__const char *__ut_line, __const char *__ut_name, __const char *__ut_host) __THROW; +#endif /* Append entry UTMP to the wtmp-like file WTMP_FILE. */ extern void updwtmp (__const char *__wtmp_file, __const struct utmp *__utmp) |