1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Fix coding-style on header

This commit is contained in:
Colin Leroy-Mira 2023-09-07 22:37:30 +02:00
parent 9669710cc3
commit 9e5620f127

View File

@ -28,9 +28,19 @@
/* */ /* */
/*****************************************************************************/ /*****************************************************************************/
#ifndef _ARPA_INET_H #ifndef _ARPA_INET_H
#define _ARPA_INET_H #define _ARPA_INET_H
/*****************************************************************************/
/* Code */
/*****************************************************************************/
#if (__OPT_i__ < 200) #if (__OPT_i__ < 200)
int __fastcall__ ntohs (int val); int __fastcall__ ntohs (int val);
int __fastcall__ htons (int val); int __fastcall__ htons (int val);
@ -51,4 +61,7 @@ int __fastcall__ htons (int val);
long __fastcall__ ntohl (long val); long __fastcall__ ntohl (long val);
long __fastcall__ htonl (long val); long __fastcall__ htonl (long val);
/* End of arpa/inet.h */
#endif #endif