13 lines
240 B
C
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
|