I have issue with compile this software.
gcc *.c -o IRToy
In file included from irs_client.h:23:0,
from bin.h:39,
from bin.c:25:
serial.h:88:5: error: conflicting types for ‘serial_write’
int serial_write(int fd, char *buf, int size);
^
serial.h:87:5: note: previous declaration of ‘serial_write’ was here
int serial_write(int fd, const char *buf, int size);
^
In file included from irs_client.h:23:0,
... and so on.
I have issue with compile this software.
gcc *.c -o IRToy
In file included from irs_client.h:23:0,
from bin.h:39,
from bin.c:25:
serial.h:88:5: error: conflicting types for ‘serial_write’
int serial_write(int fd, char *buf, int size);
^
serial.h:87:5: note: previous declaration of ‘serial_write’ was here
int serial_write(int fd, const char *buf, int size);
^
In file included from irs_client.h:23:0,
... and so on.