diff options
author | fanquake <fanquake@gmail.com> | 2022-09-23 10:48:47 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-09-23 10:48:47 +0100 |
commit | a63d4cb26a2830b297288aa6acf5b69108353334 (patch) | |
tree | 0c1428b8652ee7f616b8fff83a079bc5b98e778d /src/random.cpp | |
parent | 100949af0e2551f22c02a73355f2c64710b68ef1 (diff) |
refactor: use <cstdlib> over stdlib.h
We currently use both. Consolidate on the former.
Diffstat (limited to 'src/random.cpp')
-rw-r--r-- | src/random.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/random.cpp b/src/random.cpp index f92e679a00..eab54630b1 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -21,7 +21,7 @@ #include <util/time.h> // for GetTimeMicros() #include <cmath> -#include <stdlib.h> +#include <cstdlib> #include <thread> #ifndef WIN32 |