X-Git-Url: https://yaffs.net/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fyportenv.h;h=597898edbe20742bda266699e344ef10110d4238;hp=543c129735b2c7c99b81f6a526b868e79d870958;hb=fb1a7ee223619260cfd9b6366fd78747cc572cd5;hpb=84f122f301b6a27295641fcbde3a6fbcfea78a99 diff --git a/direct/yportenv.h b/direct/yportenv.h index 543c129..597898e 100644 --- a/direct/yportenv.h +++ b/direct/yportenv.h @@ -43,20 +43,14 @@ #include "string.h" -#define YMALLOC(x) malloc(x) -#define YFREE(x) free(x) -#define YMALLOC_ALT(x) malloc(x) -#define YFREE_ALT(x) free(x) +#define kmalloc(x) malloc(x) +#define kfree(x) free(x) +#define vmalloc(x) malloc(x) +#define vfree(x) free(x) #define YCHAR char #define YUCHAR unsigned char #define _Y(x) x -#define yaffs_strcat(a, b) strcat(a, b) -#define yaffs_strcpy(a, b) strcpy(a, b) -#define yaffs_strncpy(a, b, c) strncpy(a, b, c) -#define yaffs_strnlen(s,m) strnlen(s,m) -#define yaffs_sprintf sprintf -#define yaffs_toupper(a) toupper(a) #define Y_INLINE inline @@ -75,7 +69,7 @@ #define YAFFS_LOSTNFOUND_MODE 0700 #define yaffs_sum_cmp(x, y) ((x) == (y)) -#define yaffs_strcmp(a, b) strcmp(a, b) +#define strcmp(a, b) strcmp(a, b) #else /* Should have specified a configuration type */