You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compilation error on Red Hat Enterprise Linux Workstation release 7.5 (Maipo):
manual.c: In function 'add_highlights':
manual.c:1866:16: error: 'uint64_t' undeclared (first use in this function); did you mean 'u_int64_t'?
else if ((uint64_t) (wskend-tmpstr)<manualcol) /* should be safe see check above */
^~~~~~~~
u_int64_t
I was able to fix it by adding this line to the top of manual.c:
#include <stdint.h>
RHEL 7.5
gcc 4.8.5
glibc 2.17
The text was updated successfully, but these errors were encountered:
Compilation error on Red Hat Enterprise Linux Workstation release 7.5 (Maipo):
I was able to fix it by adding this line to the top of
manual.c
:The text was updated successfully, but these errors were encountered: