Message ID | 20220209020223.3805346-5-mcgrof@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | dbench: fixes for latest glibc | expand |
diff --git a/libnfs.c b/libnfs.c index 1f60ef0..edbcd61 100644 --- a/libnfs.c +++ b/libnfs.c @@ -17,6 +17,7 @@ along with this program; if not, see <http://www.gnu.org/licenses/>. */ #define _FILE_OFFSET_BITS 64 +#include <thread_db.h> #include "mount.h" #include "nfs.h" #include "libnfs.h"
intptr_t is now part of thread_db.h, so include that file to make it compile again. dbench now at least compiles on debian testing. Signed-off-by: Luis Chamberlain <mcgrof@kernel.org> --- libnfs.c | 1 + 1 file changed, 1 insertion(+)