https://github.com/torvalds/linux
Revision 429461608e77f1777ee5ecb044251ec64abc3edf authored by Linus Torvalds on 03 January 2016, 19:49:31 UTC, committed by Linus Torvalds on 03 January 2016, 19:49:31 UTC
Pull MIPS build fix from Ralf Baechle:
 "Fix a makefile issue resulting in build breakage with older binutils.

  This has sat in -next for a few days, testers and buildbot are happy
  with it, too though if you are going for another -rc that'd certainly
  help ironing out a few more issues"

* 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus:
  MIPS: VDSO: Fix build error with binutils 2.24 and earlier
2 parent s 4e5e384 + 398c750
Raw File
Tip revision: 429461608e77f1777ee5ecb044251ec64abc3edf authored by Linus Torvalds on 03 January 2016, 19:49:31 UTC
Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
Tip revision: 4294616
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