mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-04-24 10:09:49 +02:00
14 lines
300 B
C
14 lines
300 B
C
/*
|
|
* pks. Seems to be a gcc header file used that is not referred to due to -nostdinc
|
|
*/
|
|
|
|
#ifndef _HACK_FLOAT_H
|
|
#define _HACK_FLOAT_H
|
|
|
|
#define LDBL_MAX_EXP __LDBL_MAX_EXP__
|
|
#define LDBL_MANT_DIG __LDBL_MANT_DIG__
|
|
#define DBL_MANT_DIG __DBL_MANT_DIG__
|
|
#define LDBL_MIN_EXP __LDBL_MIN_EXP__
|
|
|
|
#endif
|