Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/shell/ash_test/recho.c

    r1765 r2725  
    3030void strprint();
    3131
    32 int
    33 main(argc, argv)
    34 int argc;
    35 char    **argv;
     32int main(int argc, char **argv)
    3633{
    37     register int    i;
     34    int i;
    3835
    3936    for (i = 1; i < argc; i++) {
     
    4239        printf(">\n");
    4340    }
    44     exit(0);
     41    exit(EXIT_SUCCESS);
    4542}
    4643
    47 void
    48 strprint(str)
    49 char    *str;
     44void strprint(char *str)
    5045{
    51     register unsigned char *s;
     46    unsigned char *s;
    5247
    5348    for (s = (unsigned char *)str; s && *s; s++) {
Note: See TracChangeset for help on using the changeset viewer.