Skip to content

Commit

Permalink
dlls/extdll: fix standard header includes
Browse files Browse the repository at this point in the history
Signed-off-by: Jussi Kivilinna <[email protected]>
  • Loading branch information
jkivilin committed Oct 13, 2024
1 parent 137cf7c commit 9368734
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dlls/extdll.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
#endif

// Misc C-runtime library headers
#include "stdio.h"
#include "stdlib.h"
#include "math.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

// Header file containing definition of globalvars_t and entvars_t
typedef int func_t; //
Expand Down

0 comments on commit 9368734

Please sign in to comment.