diff options
Diffstat (limited to 'src/librc/rc.h.in')
-rw-r--r-- | src/librc/rc.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/librc/rc.h.in b/src/librc/rc.h.in index 89ebfedd..373f1d1e 100644 --- a/src/librc/rc.h.in +++ b/src/librc/rc.h.in @@ -517,5 +517,9 @@ typedef LIST_HEAD(rc_pidlist, rc_pid) RC_PIDLIST; * @return NULL terminated list of pids */ RC_PIDLIST *rc_find_pids(const char *, const char *const *, uid_t, pid_t); +/* getline is a handy glibc function that not all libcs have, so + * we have our own */ +ssize_t rc_getline(char **, size_t *, FILE *); + __END_DECLS #endif |