Ignore:
Timestamp:
Jan 7, 2019, 8:03:37 PM (6 years ago)
Author:
katerina
Message:

Fixes for tickets #431 (OpenBSD compatibility) and #432 (compiler warnings).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/cutest_sh_unix.c

    r481 r539  
    2121  char * area[256];
    2222
     23#if !defined(USE_SYSTEM_MALLOC) && !defined(__clang__)
    2324  /* test reuse of last freed chunk */
    2425  buf = malloc(1024);
     
    2829  CuAssertTrue(tc, buf == area[0]);
    2930  free(area[0]);
    30 
     31#endif
     32 
    3133  /* test realloc */
    3234  buf = malloc(16);
Note: See TracChangeset for help on using the changeset viewer.