mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-02 22:44:44 +08:00
14 lines
384 B
C
14 lines
384 B
C
#ifndef XSTRTOUL_H_
|
|
# define XSTRTOUL_H_ 1
|
|
|
|
# define STRING_TO_UNSIGNED 1
|
|
|
|
/* Undefine this symbol so we can include xstrtol.h a second time.
|
|
Otherwise, a program that wanted both xstrtol.h and xstrtoul.h
|
|
would never get the declaration corresponding to the header file
|
|
included after the first one. */
|
|
# undef XSTRTOL_H_
|
|
# include "xstrtol.h"
|
|
|
|
#endif /* not XSTRTOUL_H_ */
|