File: endian.h

package info (click to toggle)
openbgpd 7.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,868 kB
  • sloc: ansic: 45,814; sh: 11,429; yacc: 4,528; makefile: 300
file content (10 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
/*
 * endian.h compatibility shim
 * Public domain
 */

#ifdef HAVE_ENDIAN_H
#include_next <endian.h>
#else
#include <sys/endian.h>
#endif