X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2F_PDCLIB%2F_PDCLIB_strtox_main.c;h=cf9ae5e3a871ec41bd7cc429d81732ef1cf23c4f;hp=86b6d42e18c4f05470a9f06c258de965b200dcf5;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=3082b97d8f2de1584430ad42671a0e056ed33be4 diff --git a/functions/_PDCLIB/_PDCLIB_strtox_main.c b/functions/_PDCLIB/_PDCLIB_strtox_main.c index 86b6d42..cf9ae5e 100644 --- a/functions/_PDCLIB/_PDCLIB_strtox_main.c +++ b/functions/_PDCLIB/_PDCLIB_strtox_main.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* _PDCLIB_strtox_main( const char * *, int, _PDCLIB_uintmax_t, _PDCLIB_uintmax_t, int ) This file is part of the Public Domain C Library (PDCLib). @@ -12,7 +10,7 @@ #include #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; @@ -47,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 int main( void )