mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 07:26:21 +00:00
10 lines
141 B
C
10 lines
141 B
C
|
|
#include <unistd.h>
|
||
|
|
#include <sys/socket.h>
|
||
|
|
int main(int argc, char **argv)
|
||
|
|
{
|
||
|
|
int s;
|
||
|
|
s = socket(AF_INET,SOCK_STREAM,0);
|
||
|
|
return(0);
|
||
|
|
}
|
||
|
|
|