]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/_PDCLIB_strtox_main.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / _PDCLIB / _PDCLIB_strtox_main.c
index c2e0fdd6d65ae3473443bb89fb8724f932a3aa44..cf9ae5e3a871ec41bd7cc429d81732ef1cf23c4f 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdint.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_int.h>
+#include "_PDCLIB_int.h"
 _PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, unsigned int base, uintmax_t error, uintmax_t limval, int limdigit, char * sign )
 {
     _PDCLIB_uintmax_t rc = 0;
@@ -45,7 +45,7 @@ _PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, unsigned int base, uintm
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 #include <errno.h>
 
 int main( void )