File: sysdep.h

package info (click to toggle)
lightning 1.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,020 kB
  • ctags: 3,791
  • sloc: ansic: 13,890; sh: 3,843; perl: 373; makefile: 57
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