Sha256: b92f1c60581cc38ab6900721e2a0ddc35e4d6b4020805fc43a8fc013307f9bae

Contents?: true

Size: 356 Bytes

Versions: 1

Compression:

Stored size: 356 Bytes

Contents

/*
 * missing/stdbool.h: Quick alternative of C99 stdbool.h
 */

#ifndef _MISSING_STDBOOL_H_
#define _MISSING_STDBOOL_H_

#ifndef __cplusplus

#define bool _Bool
#define true 1
#define false 0

#ifndef HAVE__BOOL /* AC_HEADER_STDBOOL in configure.ac */
typedef int _Bool;
#endif /* HAVE__BOOL */

#endif /* __cplusplus */

#endif /* _MISSING_STDBOOL_H_ */

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
timeout_ext-0.0.0 ext/timeout_ext/missing/stdbool/stdbool.h