File: sysdep.h

package info (click to toggle)
lightning 1.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,096 kB
  • ctags: 3,794
  • sloc: ansic: 13,890; sh: 6,493; perl: 373; makefile: 103
file content (10 lines) | stat: -rw-r--r-- 152 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#ifndef __SYSDEP_H_SEEN
#define __SYSDEP_H_SEEN

#include "lightning.h"

#ifndef HAVE_MEMCPY
#define memcpy(d, s, n)  bcopy((s),(d),(n))
#endif

#endif