diff options
author | Jim Meyering <jim@meyering.net> | 2007-08-18 08:59:10 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-08-18 08:59:17 +0200 |
commit | a05ae2f7168f42d290512ae919bb9ce4aa4d7063 (patch) | |
tree | 5c8d910ec503e1ff50b34e428337c1749ae0a5d6 /src | |
parent | b78c6b68f77d55b6aeb57853a2f5e2bf312584c1 (diff) | |
download | coreutils-a05ae2f7168f42d290512ae919bb9ce4aa4d7063.tar.xz |
Use new "idcache.h" header.
* src/ls.c: Remove ancient declarations of getuser and getgroup.
Include "idcache.h", instead.
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -90,6 +90,7 @@ #include "hash.h" #include "human.h" #include "filemode.h" +#include "idcache.h" #include "inttostr.h" #include "ls.h" #include "lstat.h" @@ -193,9 +194,6 @@ struct bin_str const char *string; /* Pointer to the same */ }; -char *getgroup (); -char *getuser (); - #if ! HAVE_TCGETPGRP # define tcgetpgrp(Fd) 0 #endif |