Add C++ include guards
This commit is contained in:
parent
7dc73bee8a
commit
77a526388d
|
@ -11,6 +11,10 @@
|
|||
/* standard includes, or includes needed for type declarations */
|
||||
#include <complex.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* options for text editors
|
||||
vim: expandtab:ts=4:sw=4:syntax=c.doxygen
|
||||
*/
|
||||
|
|
|
@ -5,6 +5,10 @@
|
|||
* License: GPLv3
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
/* options for text editors
|
||||
|
|
Loading…
Reference in New Issue