~ubuntu-branches/ubuntu/raring/xli/raring

« back to all changes in this revision

Viewing changes to ddxli.h

  • Committer: Bazaar Package Importer
  • Author(s): James R. Van Zandt
  • Date: 2003-06-13 13:21:39 UTC
  • Revision ID: james.westby@ubuntu.com-20030613132139-4mp0s407q907mngf
Tags: 1.17.0-14
* debian/control: update to policy 3.5.9
* rlelib.c: Don't #include varargs.h (which was not being used anyway)
  (Closes:bug#196321)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
/* equate bcopy with memcpy and bzero with memset where appropriate. */
38
38
#ifdef HAS_MEMCPY
 
39
#ifndef __linux__
39
40
#ifndef bcopy
40
41
#define bcopy(S,D,N) memcpy((char *)(D),(char *)(S),(N))
41
42
#endif
42
43
#ifndef bzero
43
44
#define bzero(P,N) memset((P),'\0',(N))
44
45
#endif
 
46
#endif /* __linux__ */
45
47
#ifndef bfill
46
48
#define bfill(P,N,C) memset((P),(C),(N))
47
49
#endif