remove usage of 'c_plusplus' preprocessor macro

Use only __cplusplus which is supported by the C++ standard.

Signed-off-by: Tapani Pälli <tapani.palli@intel.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
main
Tapani Pälli 2015-08-07 10:37:56 +03:00
parent c8df9e724e
commit 1c205749fe
3 changed files with 6 additions and 6 deletions

View File

@ -29,7 +29,7 @@
#ifndef _LIBKMS_H_ #ifndef _LIBKMS_H_
#define _LIBKMS_H_ #define _LIBKMS_H_
#if defined(__cplusplus) || defined(c_plusplus) #if defined(__cplusplus)
extern "C" { extern "C" {
#endif #endif
@ -75,7 +75,7 @@ int kms_bo_map(struct kms_bo *bo, void **out);
int kms_bo_unmap(struct kms_bo *bo); int kms_bo_unmap(struct kms_bo *bo);
int kms_bo_destroy(struct kms_bo **bo); int kms_bo_destroy(struct kms_bo **bo);
#if defined(__cplusplus) || defined(c_plusplus) #if defined(__cplusplus)
}; };
#endif #endif

View File

@ -39,7 +39,7 @@
#include <stdint.h> #include <stdint.h>
#include <drm.h> #include <drm.h>
#if defined(__cplusplus) || defined(c_plusplus) #if defined(__cplusplus)
extern "C" { extern "C" {
#endif #endif
@ -759,7 +759,7 @@ extern int drmPrimeFDToHandle(int fd, int prime_fd, uint32_t *handle);
extern char *drmGetPrimaryDeviceNameFromFd(int fd); extern char *drmGetPrimaryDeviceNameFromFd(int fd);
extern char *drmGetRenderDeviceNameFromFd(int fd); extern char *drmGetRenderDeviceNameFromFd(int fd);
#if defined(__cplusplus) || defined(c_plusplus) #if defined(__cplusplus)
} }
#endif #endif

View File

@ -36,7 +36,7 @@
#ifndef _XF86DRMMODE_H_ #ifndef _XF86DRMMODE_H_
#define _XF86DRMMODE_H_ #define _XF86DRMMODE_H_
#if defined(__cplusplus) || defined(c_plusplus) #if defined(__cplusplus)
extern "C" { extern "C" {
#endif #endif
@ -508,7 +508,7 @@ extern int drmModeCreatePropertyBlob(int fd, const void *data, size_t size,
extern int drmModeDestroyPropertyBlob(int fd, uint32_t id); extern int drmModeDestroyPropertyBlob(int fd, uint32_t id);
#if defined(__cplusplus) || defined(c_plusplus) #if defined(__cplusplus)
} }
#endif #endif