From 5383441cf73daaff24abde3b740eb1a372e97ad6 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 4 Dec 2011 18:18:52 +0000 Subject: [PATCH] =?UTF-8?q?2011-12-04=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libmisc/shell/internal.h: Add user_from_uid, group_from_gid. --- cpukit/ChangeLog | 4 ++++ cpukit/libmisc/shell/internal.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 3819d9d72f..fea1545d8b 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,7 @@ +2011-12-04 Ralf Corsépius + + * libmisc/shell/internal.h: Add user_from_uid, group_from_gid. + 2011-12-04 Ralf Corsépius * libmisc/shell/print-ls.c: Include "internal.h". diff --git a/cpukit/libmisc/shell/internal.h b/cpukit/libmisc/shell/internal.h index f4a67d6a08..f82ec6d3e3 100644 --- a/cpukit/libmisc/shell/internal.h +++ b/cpukit/libmisc/shell/internal.h @@ -47,5 +47,7 @@ extern int rtems_shell_main_cp(int argc, char *argv[]); #include extern void strmode(mode_t mode, char *p); +extern const char *user_from_uid(uid_t uid, int nouser); +extern char *group_from_gid(gid_t gid, int nogroup); #endif