select(int, fd_set, fd_set)
UDP ソケット接続の関数のタイムアウトを設定しようとしています。
second 変数と usecond 変数を設定すると、Error this definition has no storage class or type specifier が表示されます。
これがコードです
#define UTIMER 300000
#define STIMER 0
struct timeval timeouts;
timeouts.tv_sec=STIMER; // <-- ERROR HERE
timeouts.tv_usec=UTIMER; // <-- ERROR HERE