Added an rtems specific getprogname() to userspace.

This commit is contained in:
Jennifer Averett 2012-09-13 14:54:38 -05:00
parent 4ffe3f450e
commit c9be340ecf
2 changed files with 9 additions and 0 deletions

View File

@ -129,6 +129,7 @@ C_FILES += lib/libc/db/mpool/mpool.c
# C_FILES += rtems/rtems-net-setup.c
C_FILES += rtems/syslog.c
C_FILES += rtems/rtems-syslog-initialize.c
C_FILES += rtems/rtems-getprogname.c
# ping command sources
C_FILES += commands/sbin/ping/ping.c

View File

@ -0,0 +1,8 @@
/*
* RTEMS version of
*/
const char *getprogname(void)
{
return "RTEMS";
}