#ifndef __ASN1_ARCH_NWD_CONFIG_H__
#define __ASN1_ARCH_NWD_CONFIG_H__

#include <stdlib.h>

#define CALLOC(nmemb, size) calloc(nmemb, size)
#define MALLOC(size)    malloc(size)
#define REALLOC(oldptr, size) realloc(oldptr, size)
#define FREEMEM(ptr)    free(ptr)

#endif // __ASN1_ARCH_NWD_CONFIG_H__
