mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-16 19:40:57 +01:00
14 lines
267 B
C
14 lines
267 B
C
#ifndef _HAVE_PCP_PLATFORM_H
|
|
#define _HAVE_PCP_PLATFORM_H
|
|
|
|
#if defined(CONFIG_H_FILE)
|
|
#include CONFIG_H_FILE
|
|
#elif defined(HAVE_CONFIG_H)
|
|
#include "config.h"
|
|
#else
|
|
#error Need either CONFIG_H_FILE or HAVE_CONFIG_H defined.
|
|
#endif
|
|
|
|
#endif /* !_HAVE_PCP_PLATFORM_H */
|
|
|