refactor: use <cstdio> over stdio.h

We currently use both. Consolidate on the former.
This commit is contained in:
fanquake
2022-09-20 11:21:33 +01:00
parent 4e15a288c3
commit b95633121b
5 changed files with 5 additions and 5 deletions

View File

@@ -13,11 +13,11 @@
#include <algorithm>
#include <assert.h>
#include <cstdio>
#include <ios>
#include <limits>
#include <optional>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <string>
#include <utility>