Monthly Archives: July 2019

apue.h header from Advanced Programming in the Unix Environment

/* * Our own header, to be included before all standard system headers. */ #ifndef _APUE_H #define _APUE_H #define _POSIX_C_SOURCE 200809L #if defined(SOLARIS) /* Solaris 10 */ #define _XOPEN_SOURCE 600 #else #define _XOPEN_SOURCE 700 #endif #include /* some systems still … Continue reading

Posted in Uncategorized | Leave a comment

GCC-9 and Ubuntu kernel error

if you Linux suddenly stop compiling the kernel or kernel modules from packages (nvidia, virtualbox) check that you are not using gcc-9 as default C compiler, it has a problem with some parameters needed to compile with protections for the last … Continue reading

Posted in Uncategorized | Leave a comment