Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/libexec/bootpd/bptypes.h
34856 views
1
#ifndef BPTYPES_H
2
#define BPTYPES_H
3
4
#include <sys/types.h>
5
6
/*
7
* 32 bit integers are different types on various architectures
8
*/
9
10
#define int32 int32_t
11
#define u_int32 u_int32_t
12
13
/*
14
* Nice typedefs. . .
15
*/
16
17
typedef int boolean;
18
typedef unsigned char byte;
19
20
#endif /* BPTYPES_H */
21
22