Closed C0deH4cker closed 9 years ago
At least when building with Clang on OS X, there is an error on line 1120 of editline.c caused by using the ioctl() function without first declaring it by including its header (<sys/ioctl.h>). Adding this line makes the build complete without error.
ioctl()
<sys/ioctl.h>
Merged to master, cheers! :smiley:
At least when building with Clang on OS X, there is an error on line 1120 of editline.c caused by using the
ioctl()
function without first declaring it by including its header (<sys/ioctl.h>
). Adding this line makes the build complete without error.