Luna/libc/include/memory.h
apio 1091798195
All checks were successful
continuous-integration/drone/push Build is passing
libc: Add stub memory.h header for legacy programs
2023-07-12 11:24:54 +02:00

13 lines
240 B
C

/* 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