glibc/SOURCES/tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/test.c
2024-07-15 12:53:08 +03:00

10 lines
141 B
C

#include <arpa/inet.h>
#include <stdlib.h>
int main(void)
{
uint16_t portnbr=0;
uint16_t n_portnbr = htons(portnbr);
exit(0);
}