1.4.2 #include <stdio.h>

This commit is contained in:
seajee
2025-04-27 00:13:25 +02:00
parent 239e2310ab
commit b830b4aeba

4
sock.h
View File

@@ -1,4 +1,4 @@
// sock - v1.4.1 - MIT License - https://github.com/seajee/sock.h // sock - v1.4.2 - MIT License - https://github.com/seajee/sock.h
#ifndef SOCK_H_ #ifndef SOCK_H_
#define SOCK_H_ #define SOCK_H_
@@ -8,6 +8,7 @@
#include <errno.h> #include <errno.h>
#include <netdb.h> #include <netdb.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/socket.h> #include <sys/socket.h>
@@ -309,6 +310,7 @@ void sock_log_error(void)
/* /*
Revision history: Revision history:
1.4.2 (2025-04-26) #include <stdio.h>
1.4.1 (2025-04-26) Check if addr is NULL in sock_recvfrom 1.4.1 (2025-04-26) Check if addr is NULL in sock_recvfrom
1.4.0 (2025-04-26) Renamed sock_create() to sock() 1.4.0 (2025-04-26) Renamed sock_create() to sock()
1.3.0 (2025-04-26) Renamed sock_log_errors to sock_log_error 1.3.0 (2025-04-26) Renamed sock_log_errors to sock_log_error