File: libbb_udpcast.h

package info (click to toggle)
udpcast 20120424-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, stretch, trixie
  • size: 876 kB
  • ctags: 1,011
  • sloc: ansic: 7,713; sh: 2,838; perl: 227; makefile: 114
file content (31 lines) | stat: -rw-r--r-- 470 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* libbb_udhcp.h - busybox compatability wrapper */

#ifndef _LIBBB_UDPCAST_H
#define _LIBBB_UDPCAST_H

#ifndef UDPCAST_CONFIG_H
# define UDPCAST_CONFIG_H
# include "config.h"
#endif

#ifndef NO_BB
#undef HAVE_STDINT_H
#include "libbb.h"
#include "busybox.h"

#define COMBINED_BINARY

#else /* ! BB_BT */

#define TRUE			1
#define FALSE			0

#ifdef HAVE_MALLOC_H
    #include <malloc.h>
#endif

#define xmalloc malloc

#endif /* BB_VER */

#endif /* _LIBBB_UDPCAST_H */