Changeset 4958:2d8a28f3d87f in roaraudio for configure


Ignore:
Timestamp:
05/14/11 00:29:58 (13 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

Added simple memmgr (memory Manager) code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r4941 r4958  
    15121512 
    15131513#                 def                 name      call                         -- header 
     1514test_func_defmake ROAR_HAVE_MALLOC    malloc    'malloc(0)'                  -- stdlib.h 
     1515test_func_defmake ROAR_HAVE_CALLOC    calloc    'calloc(0, 0)'               -- stdlib.h 
     1516test_func_defmake ROAR_HAVE_REALLOC   realloc   'realloc((void*)0, 0)'       -- stdlib.h 
     1517test_func_defmake ROAR_HAVE_FREE      free      'free((void*)0)'             -- stdlib.h 
     1518test_func_defmake ROAR_HAVE_STRDUP    strdup    'strdup((void*)0)'           -- string.h 
     1519test_func_defmake ROAR_HAVE_STRNDUP   strndup   'strndup((void*)0)'          -- string.h 
     1520test_func_defmake ROAR_HAVE_STRLEN    strlen    'strlen((void*)0)'           -- string.h 
     1521test_func_defmake ROAR_HAVE_STRNLEN   strnlen   'strnlen((void*)0)'          -- string.h 
    15141522test_func_defmake ROAR_HAVE_SETENV    setenv    'setenv("", "", 0)'          -- stdlib.h 
    15151523test_func_defmake ROAR_HAVE_PUTENV    putenv    'putenv("")'                 -- stdlib.h 
Note: See TracChangeset for help on using the changeset viewer.