Skip to content

Commit

Permalink
Add fix for missing cstdarg header in GCC 13.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spicyjpeg committed Jan 8, 2024
1 parent a149dc9 commit 00abe59
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libpsn00b/include/cstdio
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

#pragma once

#include <cstdarg>
// BUG: some GCC versions (13.2.0, possibly others?) do not ship with cstdarg.
//#include <cstdarg>
#include <stdarg.h>

namespace std {
extern "C" {
Expand Down

0 comments on commit 00abe59

Please sign in to comment.