1 #ifndef __NV_UNIX_VERSION_H__
2 #define __NV_UNIX_VERSION_H__
3 
4 #if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS) || defined(NV_VMWARE) || defined(NV_QNX) || defined(NV_INTEGRITY) || \
5     (defined(RMCFG_FEATURE_PLATFORM_GSP) && RMCFG_FEATURE_PLATFORM_GSP == 1)
6 
7 #define NV_VERSION_STRING               "550.78"
8 
9 #else
10 
11 #error "nvUnixVersion.h should only be included in UNIX builds"
12 
13 #endif
14 
15 #endif /* __NV_UNIX_VERSION_H__ */
16