mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-29 16:14:43 +00:00
Initial Import
This commit is contained in:
9
config/socket.c
Normal file
9
config/socket.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <unistd.h>
|
||||
#include <sys/socket.h>
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
int s;
|
||||
s = socket(AF_INET,SOCK_STREAM,0);
|
||||
return(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user