Get rid of a warning where functions in DNB.h were extern "C" when they don't need to be anymore.

llvm-svn: 169202
This commit is contained in:
Greg Clayton
2012-12-04 01:57:36 +00:00
parent 45b6edbd1d
commit 12057dafea

View File

@@ -17,10 +17,6 @@
#include "DNBDefs.h"
#include <mach/thread_info.h>
#ifdef __cplusplus
extern "C" {
#endif
#define DNB_EXPORT __attribute__((visibility("default")))
typedef bool (*DNBShouldCancelCallback) (void *);
@@ -160,8 +156,4 @@ nub_size_t DNBPrintf (nub_process_t pid, nub_thread_t tid, nub_addr_t addr,
const char * DNBStateAsString (nub_state_t state) DNB_EXPORT;
nub_bool_t DNBResolveExecutablePath (const char *path, char *resolved_path, size_t resolved_path_size) DNB_EXPORT;
#ifdef __cplusplus
}
#endif
#endif