summaryrefslogtreecommitdiff
path: root/googleurl/strtoull.h
blob: 5caf83b6c7c4ba844184cd6511fa281980d88db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _STRTOLL_H_
#define _STRTOLL_H_

#include <stdlib.h>

#ifdef FREEBSD
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint64_t __strtoull(const char *nptr, char **endptr, int base);
#ifdef __cplusplus 
}
#endif
#define strtoull __strtoull
#else
// use system one
#endif

#endif