Revision 19cbbc60c680e2e404bf55458ad2c4ff60d16076 authored by Mikulas Patocka on 21 December 2012, 20:23:32 UTC, committed by Alasdair G Kergon on 21 December 2012, 20:23:32 UTC
Use a defined macro DM_ENDIO_INCOMPLETE instead of a numeric constant.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
1 parent 7c27213
Raw File
kstrtox.h
#ifndef _LIB_KSTRTOX_H
#define _LIB_KSTRTOX_H

#define KSTRTOX_OVERFLOW	(1U << 31)
const char *_parse_integer_fixup_radix(const char *s, unsigned int *base);
unsigned int _parse_integer(const char *s, unsigned int base, unsigned long long *res);

#endif
back to top