Changeset 6cdaa85 in rtems
- Timestamp:
- Oct 4, 2018, 6:16:45 PM (2 years ago)
- Branches:
- 5, master
- Children:
- 68e1ccc
- Parents:
- 2806e10
- git-author:
- Sebastian Huber <sebastian.huber@…> (10/04/18 18:16:45)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (10/09/18 11:26:47)
- Location:
- cpukit/libmisc
- Files:
-
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libmisc/Makefile.am
r2806e10 r6cdaa85 79 79 if LIBSHELL 80 80 noinst_LIBRARIES += libshell.a 81 libshell_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/shell82 81 libshell_a_SOURCES = shell/cat_file.c shell/cmds.c shell/internal.h \ 83 82 shell/main_alias.c shell/main_cat.c shell/main_cd.c shell/cmp-ls.c \ -
cpukit/libmisc/shell/cmp-ls.c
r2806e10 r6cdaa85 51 51 #include <sys/stat.h> 52 52 53 #include <fts.h>53 #include "fts.h" 54 54 #include <string.h> 55 55 -
cpukit/libmisc/shell/dd-args.c
r2806e10 r6cdaa85 46 46 #include <sys/types.h> 47 47 48 #include <err.h>48 #include "err.h" 49 49 #include <errno.h> 50 50 #include <inttypes.h> -
cpukit/libmisc/shell/dd-conv.c
r2806e10 r6cdaa85 46 46 #include <sys/param.h> 47 47 48 #include <err.h>48 #include "err.h" 49 49 #include <inttypes.h> 50 50 #include <string.h> -
cpukit/libmisc/shell/dd-position.c
r2806e10 r6cdaa85 49 49 #endif 50 50 51 #include <err.h>51 #include "err.h" 52 52 #include <errno.h> 53 53 #include <inttypes.h> -
cpukit/libmisc/shell/err.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <stdarg.h> 51 51 -
cpukit/libmisc/shell/errx.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <stdarg.h> 51 51 -
cpukit/libmisc/shell/fts.c
r2806e10 r6cdaa85 58 58 #include <errno.h> 59 59 #include <fcntl.h> 60 #include <fts.h>60 #include "fts.h" 61 61 #include <stdlib.h> 62 62 #include <stdint.h> -
cpukit/libmisc/shell/hexdump-display.c
r2806e10 r6cdaa85 52 52 53 53 #include <ctype.h> 54 #include <err.h>54 #include "err.h" 55 55 #include <errno.h> 56 56 #include <stdio.h> -
cpukit/libmisc/shell/hexdump-odsyntax.c
r2806e10 r6cdaa85 51 51 52 52 #include <ctype.h> 53 #include <err.h>53 #include "err.h" 54 54 #include <errno.h> 55 55 #include <float.h> -
cpukit/libmisc/shell/hexdump-parse.c
r2806e10 r6cdaa85 46 46 #include <sys/types.h> 47 47 48 #include <err.h>48 #include "err.h" 49 49 #include <fcntl.h> 50 50 #include <stdio.h> -
cpukit/libmisc/shell/hexsyntax.c
r2806e10 r6cdaa85 46 46 #include <sys/types.h> 47 47 48 #include <err.h>48 #include "err.h" 49 49 #include <stdio.h> 50 50 #include <stdlib.h> -
cpukit/libmisc/shell/main_cp.c
r2806e10 r6cdaa85 76 76 #include <sys/stat.h> 77 77 78 #include <err.h>78 #include "err.h" 79 79 #include <errno.h> 80 #include <fts.h>80 #include "fts.h" 81 81 #include <limits.h> 82 82 #include <signal.h> -
cpukit/libmisc/shell/main_dd.c
r2806e10 r6cdaa85 65 65 66 66 #include <ctype.h> 67 #include <err.h>67 #include "err.h" 68 68 #include <errno.h> 69 69 #include <fcntl.h> -
cpukit/libmisc/shell/main_ln.c
r2806e10 r6cdaa85 59 59 #include <sys/stat.h> 60 60 61 #include <err.h>61 #include "err.h" 62 62 #include <errno.h> 63 63 #include <locale.h> -
cpukit/libmisc/shell/main_ls.c
r2806e10 r6cdaa85 65 65 66 66 #include <dirent.h> 67 #include <err.h>67 #include "err.h" 68 68 #include <errno.h> 69 #include <fts.h>69 #include "fts.h" 70 70 #include <locale.h> 71 71 #include <stdio.h> -
cpukit/libmisc/shell/main_mknod.c
r2806e10 r6cdaa85 61 61 #endif 62 62 63 #include <err.h>63 #include "err.h" 64 64 #include <errno.h> 65 65 #include <limits.h> -
cpukit/libmisc/shell/main_mv.c
r2806e10 r6cdaa85 64 64 #include <sys/stat.h> 65 65 66 #include <err.h>66 #include "err.h" 67 67 #include <errno.h> 68 68 #include <fcntl.h> -
cpukit/libmisc/shell/main_ping.c
r2806e10 r6cdaa85 85 85 86 86 #include <ctype.h> 87 //#include <err.h>87 //#include "err.h" 88 88 #include <errno.h> 89 89 #if !defined(__rtems__) -
cpukit/libmisc/shell/main_rm.c
r2806e10 r6cdaa85 57 57 #include <sys/param.h> 58 58 59 #include <err.h>59 #include "err.h" 60 60 #include <errno.h> 61 61 #include <fcntl.h> 62 #include <fts.h>62 #include "fts.h" 63 63 #include <grp.h> 64 64 #include <pwd.h> -
cpukit/libmisc/shell/print-ls.c
r2806e10 r6cdaa85 56 56 #include <sys/stat.h> 57 57 58 #include <err.h>58 #include "err.h" 59 59 #include <errno.h> 60 #include <fts.h>60 #include "fts.h" 61 61 #include <grp.h> 62 62 #include <pwd.h> -
cpukit/libmisc/shell/utils-cp.c
r2806e10 r6cdaa85 53 53 #include <utime.h> 54 54 55 #include <err.h>55 #include "err.h" 56 56 #include <errno.h> 57 57 #include <fcntl.h> 58 #include <fts.h>58 #include "fts.h" 59 59 #include <limits.h> 60 60 #include <stdio.h> -
cpukit/libmisc/shell/utils-ls.c
r2806e10 r6cdaa85 52 52 53 53 #include <ctype.h> 54 #include <err.h>55 #include <fts.h>54 #include "err.h" 55 #include "fts.h" 56 56 #include <limits.h> 57 57 #include <stdio.h> 58 58 #include <stdlib.h> 59 59 #include <string.h> 60 #include <vis.h>60 #include "vis.h" 61 61 62 62 #include "extern-ls.h" -
cpukit/libmisc/shell/verr.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <errno.h> 51 51 #include <stdarg.h> -
cpukit/libmisc/shell/verrx.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <stdarg.h> 51 51 #include <stdio.h> -
cpukit/libmisc/shell/vis.c
r2806e10 r6cdaa85 78 78 #include <sys/types.h> 79 79 80 #include <vis.h>80 #include "vis.h" 81 81 #include <stdlib.h> 82 82 -
cpukit/libmisc/shell/vwarn.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <errno.h> 51 51 #include <stdarg.h> -
cpukit/libmisc/shell/vwarnx.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <stdarg.h> 51 51 #include <stdio.h> -
cpukit/libmisc/shell/warn.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <stdarg.h> 51 51 -
cpukit/libmisc/shell/warnx.c
r2806e10 r6cdaa85 47 47 #endif /* LIBC_SCCS and not lint */ 48 48 49 #include <err.h>49 #include "err.h" 50 50 #include <stdarg.h> 51 51
Note: See TracChangeset
for help on using the changeset viewer.