1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00
cc65/include/arpa/inet.h
2023-09-07 07:03:34 +02:00

11 lines
192 B
C

#ifndef _ARPA_INET_H
#define _ARPA_INET_H
int __fastcall__ ntohs (int val);
int __fastcall__ htons (int val);
long __fastcall__ ntohl (long val);
long __fastcall__ htonl (long val);
#endif