diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2015-06-22 18:32:27 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2015-06-22 18:32:27 +0200 |
commit | e2515f6e1a7b17addda4c558a0a6ca05b4ec6e55 (patch) | |
tree | ea63b9499de4abbf7e09c3b6a6952786740be577 /pcilib/env.h | |
parent | 87583e6ec5c1961ef975b873041eeada3e1e6c6d (diff) | |
download | pcitool-e2515f6e1a7b17addda4c558a0a6ca05b4ec6e55.tar.gz pcitool-e2515f6e1a7b17addda4c558a0a6ca05b4ec6e55.tar.bz2 pcitool-e2515f6e1a7b17addda4c558a0a6ca05b4ec6e55.tar.xz pcitool-e2515f6e1a7b17addda4c558a0a6ca05b4ec6e55.zip |
Keep C++ compilers happy
Diffstat (limited to 'pcilib/env.h')
-rw-r--r-- | pcilib/env.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pcilib/env.h b/pcilib/env.h index 4fd40f1..7cf69b9 100644 --- a/pcilib/env.h +++ b/pcilib/env.h @@ -7,6 +7,14 @@ typedef enum { PCILIB_MAX_ENV } pcilib_env_t; +#ifdef __cplusplus +extern "C" { +#endif + const char *pcilib_getenv(pcilib_env_t env, const char *var); +#ifdef __cplusplus +} +#endif + #endif /* _PCILIB_ENV_H */ |