2019-09-16 13:06:57 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include "proxy.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
2019-09-19 09:56:47 +00:00
|
|
|
printf("~ test ~\n");
|
2019-09-16 13:06:57 +00:00
|
|
|
|
|
|
|
}
|