Changeset 789


Ignore:
Timestamp:
Oct 2, 2003, 3:16:45 AM (22 years ago)
Author:
bird
Message:

Prototype related changes.

Location:
trunk/src/emx/src/lib
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/app/unsetenv.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r788 r789  
    1111 */
    1212
    13      
     13
    1414#include "libc-alias.h"
    1515#include <stdlib.h>
     
    1818#include <emx/startup.h>
    1919
    20      
    21      
     20
     21
    2222/**
    2323 * Delete environment variable.
     
    6060            /* next */
    6161            p++;
    62           } 
     62          }
    6363      }
    6464    return 0;
  • trunk/src/emx/src/lib/io/chmod.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r788 r789  
    88#include <emx/syscalls.h>
    99
    10 int _STD(chmod) (const char *name, int pmode)
     10int _STD(chmod) (const char *name, mode_t mode)
    1111{
    1212  int attr, rc;
     
    1515  if (attr < 0)
    1616    return -1;
    17   if (pmode & S_IWRITE)
     17  if (mode & S_IWRITE)
    1818    attr &= ~1;
    1919  else
  • trunk/src/emx/src/lib/str/memicmp.c

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r788 r789  
    1414#include <sys/locale.h>
    1515#include <stddef.h>
     16#include <string.h>
    1617
    1718int _STD(memicmp) (const void *m1, const void *m2, size_t len)
  • trunk/src/emx/src/lib/str/strlwr.c

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r788 r789  
    1313#include "libc-alias.h"
    1414#include <sys/locale.h>
     15#include <string.h>
    1516
    1617static int __uni_strlwr (UniChar *ucs, void *arg)
  • trunk/src/emx/src/lib/str/strnicmp.c

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r788 r789  
    1515#include <stddef.h>
    1616#include <sys/locale.h>
     17#include <string.h>
    1718
    1819int _STD(strnicmp) (__const__ char *s1, __const__ char *s2, size_t len)
  • trunk/src/emx/src/lib/str/strupr.c

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r788 r789  
    1313#include "libc-alias.h"
    1414#include <sys/locale.h>
     15#include <string.h>
    1516
    1617static int __uni_strupr (UniChar *ucs, void *arg)
  • trunk/src/emx/src/lib/str/strxfrm.c

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r788 r789  
    1616#include <sys/locale.h>
    1717#include <stddef.h>
     18#include <string.h>
    1819
    1920struct __strxfrm_arg
Note: See TracChangeset for help on using the changeset viewer.