1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 22:29:31 +00:00

Add 'extern "C"' so the module may be used from C++ sources.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4801 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2010-08-09 15:55:49 +00:00
parent 3f7fc55c7e
commit 5625977188

View File

@ -38,6 +38,13 @@
/* Allow usage from C++ */
#ifdef __cplusplus
extern "C" {
#endif
/*****************************************************************************/
/* Data */
/*****************************************************************************/
@ -183,10 +190,15 @@ void cc65_free_segmentinfo (cc65_dbginfo handle, cc65_segmentinfo* info);
/* End of dbginfo.h */
/* Allow usage from C++ */
#ifdef __cplusplus
}
#endif
/* End of dbginfo.h */
#endif