Changeset 122


Ignore:
Timestamp:
Jun 9, 2007, 10:26:40 PM (18 years ago)
Author:
Brendan Oakley
Message:

Use OpenWatcom strtoul, removing hacked EMX version and mismatched prototype.

Location:
GPL/trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/alsa-kernel/core/init.c

    r121 r122  
    601601        int len = strlen(component);
    602602
    603         ptr = strstr1(card->components, component);
     603        ptr = strstr(card->components, component);
    604604        if (ptr != NULL) {
    605605                if (ptr[len] == '\0' || ptr[len] == ' ')        /* already there */
  • GPL/trunk/include/linux/kernel.h

    r32 r122  
    4747NORET_TYPE void do_exit(long error_code);
    4848
    49 extern unsigned long simple_strtoul(const char *,char **,unsigned int);
     49#define simple_strtoul strtoul
    5050extern long simple_strtol(const char *,char **,unsigned int);
    5151extern int sprintf(char * buf, const char * fmt, ...);
  • GPL/trunk/lib32/makefile.os2

    r111 r122  
    2121FILE3    = ossidc.obj semaphore.obj waitqueue.obj misc.obj fminstrload.obj
    2222FILE4    = strncpy.obj task.obj
    23 FILE5    = strncmp.obj strstr.obj timer.obj
    24 FILE6    = strtol.obj instropl2.obj instropl3.obj vsprintf.obj
     23FILE5    = strncmp.obj timer.obj
     24FILE6    = instropl2.obj instropl3.obj vsprintf.obj
    2525!if $(KEE) == 0
    2626FILE7    = stack.obj
Note: See TracChangeset for help on using the changeset viewer.