First push after merge, split and enhance both zOS and zputa

This commit is contained in:
Philip Smart
2020-04-25 22:48:39 +01:00
commit 25466f1db8
5072 changed files with 2191180 additions and 0 deletions

21
apps/tbasic/mystdlib.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef __MY_STDLIB_H_
#define __MY_STDLIB_H_
#ifndef NO_STDLIB
#include <stdlib.h>
#include <string.h>
#else
#define NULL ( (void *) 0)
int strlen(const char* s);
void* memcpy(void* dst, const void* src, int sz);
int memcmp(const void* dst, const void* src, int sz);
void* memmove(void* dst, const void* src, int sz);
#endif
#endif