File: memmove.h

package info (click to toggle)
netpipes 4.2-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 376 kB
  • ctags: 202
  • sloc: ansic: 3,272; makefile: 114
file content (10 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10

#ifdef NO_MEMMOVE
void *memmove(/*void*, void*, size_t*/);

#else

/* rely on the system */
#include "string.h"

#endif