GNU Radio's CCSDS Package
errno.h
Go to the documentation of this file.
1 #if defined( __linux__ ) || defined( __gnu_linux__ )
2 // Linux systems; we should have the actual /usr/include/linux/errno.h, from linux-libc-dev
3 # include "/usr/include/linux/errno.h"
4 #else
5 // Non-Linux systems; the standard errno.h should be available
6 # include <errno.h>
7 #endif