Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions include/stdlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ __Z_EXPORT int __mkstemp_ascii(char*);
#define realpath __realpath_replaced
#undef mkstemp
#define mkstemp __mkstemp_replaced
#ifdef ZOSLIB_INSTRUMENTATION
#undef malloc
#define malloc __malloc_replaced
#undef free
#define free __free_replaced
#endif
#endif

// LE fix since posix_memalign is exposed in 2.5
#if (__TARGET_LIB__ < 0x43010000)
Expand Down Expand Up @@ -74,8 +76,10 @@ extern "C" {
*/
#undef realpath
__Z_EXPORT char *realpath(const char * __restrict__, char * __restrict__) __asm("__realpath_extended");
#ifdef ZOSLIB_INSTRUMENTATION
__Z_EXPORT void* malloc(size_t size) __THROW __asm("__zoslib_malloc") ;
__Z_EXPORT void free(void* ptr) __THROW __asm("__zoslib_free") ;
#endif

#ifdef __NATIVE_ASCII_F
/**
Expand Down
96 changes: 0 additions & 96 deletions test/test-writev.cc

This file was deleted.

Loading