blob: 7147c6c2b7d6bed932788dc1cb7905e50a0b361b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Instrumentation library path injection
* SPDX-FileCopyrightText: 2024 Nguyễn Gia Phong <cnx@loang.net>
* SPDX-License-Identifier: AGPL-3.0-or-later
* vim: filetype=c.m4
*/
#ifndef AFL_DYNINST_H
#define AFL_DYNINST_H
const char *const afl_dyninst_lib = "AFL_DYNINST_LIB/libafldyninst.so";
const char *const dyninstapi_rt_lib = "DYNINST_LIB/libdyninstAPI_RT.so";
#endif /* AFL_DYNINST_H */
|