Luna/libc/include/memory.h

13 lines
240 B
C
Raw Normal View History

/* memory.h: Legacy header for string/memory manipulation functions. */
#ifndef _MEMORY_H
#define _MEMORY_H
#warning "memory.h is a legacy header, you should use string.h in new code"
#ifndef _STRING_H
#include <string.h>
#endif
#endif