diff options
author | Rob Landley <rob@landley.net> | 2013-09-11 12:09:53 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-09-11 12:09:53 -0500 |
commit | cd0b70e739055e5e8a5d9d6f823bdd3fa97ee509 (patch) | |
tree | aee5f419a7ba2471bb43c404121bb43df8abdce7 /lib/lib.h | |
parent | 9b9a1ef58763c9a6fc0cd23f125353716824b8bc (diff) | |
download | toybox-cd0b70e739055e5e8a5d9d6f823bdd3fa97ee509.tar.gz |
Ah, that's why commit 1057 was skipped last pull: it was unfinished. Oops. (Fix it.)0.4.6
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -158,7 +158,7 @@ void replace_tempfile(int fdin, int fdout, char **tempname); void crc_init(unsigned int *crc_table, int little_endian); void terminal_size(unsigned *x, unsigned *y); int yesno(char *prompt, int def); -void for_each_pid_with_name_in(char **names, int (*callback)(pid_t pid, char *name)); +void names_to_pid(char **names, int (*callback)(pid_t pid, char *name)); // net.c int xsocket(int domain, int type, int protocol); |