use float instead of double
This commit is contained in:
parent
f4f91325cc
commit
e81666e657
10 changed files with 114 additions and 115 deletions
|
|
@ -5,14 +5,18 @@
|
|||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#ifdef _WIN32
|
||||
#include <winsock2.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <netdb.h>
|
||||
#include <netinet/tcp.h>
|
||||
#include <poll.h>
|
||||
#endif
|
||||
|
||||
/* TCP */
|
||||
#define NET_PORT 3219
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue