Skip to content

Commit

Permalink
Merge pull request #424 from AppImage/appimagetool/fix-invalid-cpp-id…
Browse files Browse the repository at this point in the history
…entifier

Fix "fix" of identifiers
  • Loading branch information
TheAssassin authored Jul 5, 2017
2 parents aea4d33 + 22db97e commit 9c36427
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions binreloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
#include <string.h>
#include "binreloc.h"

#ifdef cplusplus
#ifdef __cplusplus
extern "C" {
#endif /* cplusplus */
#endif /* __cplusplus */



Expand Down Expand Up @@ -759,8 +759,8 @@ br_dirname (const char *path)
}


#ifdef cplusplus
#ifdef __cplusplus
}
#endif /* cplusplus */
#endif /* __cplusplus */

#endif /* BINRELOC_C */
8 changes: 4 additions & 4 deletions binreloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#ifndef BINRELOC_H
#define BINRELOC_H

#ifdef cplusplus
#ifdef __cplusplus
extern "C" {
#endif /* cplusplus */
#endif /* __cplusplus */


/** These error codes can be returned by br_init(), br_init_lib(), gbr_init() or gbr_init_lib(). */
Expand Down Expand Up @@ -73,8 +73,8 @@ char *br_build_path (const char *dir, const char *file);
char *br_dirname (const char *path);


#ifdef cplusplus
#ifdef __cplusplus
}
#endif /* cplusplus */
#endif /* __cplusplus */

#endif /* BINRELOC_H */

0 comments on commit 9c36427

Please sign in to comment.