Home | History | Annotate | Line # | Download | only in include
      1 #include <sys/cdefs.h>
      2 #include <sys/malloc.h>
      3 #undef malloc
      4 #undef free
      5 #define	malloc(size)	__malloc_should_not_be_used
      6 #define	free(addr)	__free_should_not_be_used
      7 
      8 #define abort()		panic("libsodium internal error")
      9