Use modern cpp headers

This commit is contained in:
Paul Reeves 2023-01-20 19:36:51 +01:00
parent fbad97cb79
commit 8c366b60ac
2 changed files with 5 additions and 5 deletions

View File

@ -31,8 +31,8 @@
#include <firebird/UdrCppEngine.h>
#include <cassert>
#include <stdio.h>
#include <stdlib.h>
#include <cstdio>
#include <cstdlib>
#ifdef HAVE_MATH_H
#include <math.h>
@ -49,7 +49,7 @@
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# include <ctime>
# endif
#endif

View File

@ -8,8 +8,8 @@
#include "ibase.h"
#include "firebird/UdrCppEngine.h"
#include <assert.h>
#include <stdio.h>
#include <cassert>
#include <cstdio>