normalize includes: common

This commit is contained in:
brainiac
2025-12-17 09:32:44 -08:00
committed by Alex
parent 723ca13482
commit 451eb0806a
295 changed files with 1592 additions and 2009 deletions
+3 -5
View File
@@ -15,10 +15,10 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef TYPES_H
#define TYPES_H
#include <stdint.h>
#pragma once
#include <cstdint>
typedef uint8_t byte;
typedef uint8_t uint8;
typedef uint16_t uint16;
@@ -97,5 +97,3 @@ typedef const char Const_char; //for perl XS
# define htonll(x) htobe64(x)
# define ntohll(x) be64toh(x)
#endif
#endif