Skip to content

Commit

Permalink
Add include guards and C++ compatibility to fuzz_common.h
Browse files Browse the repository at this point in the history
  • Loading branch information
renatahodovan committed Jun 12, 2024
1 parent 36911f0 commit d3da16b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions fuzz/fuzz_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,23 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef FUZZ_COMMON_H
#define FUZZ_COMMON_H

#include "quickjs.h"
#include "quickjs-libc.h"

#ifdef __cplusplus
extern "C" {
#endif

static int nbinterrupts = 0;

void reset_nbinterrupts();
void test_one_input_init(JSRuntime *rt, JSContext *ctx);

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

#endif /* FUZZ_COMMON_H */

0 comments on commit d3da16b

Please sign in to comment.