summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/stdlib.h
diff options
context:
space:
mode:
authorScott Wood2007-09-05 21:21:10 +0200
committerPaul Mackerras2007-09-13 17:33:23 +0200
commit9de782770b84768e1aa2e6454223ef30768de84e (patch)
tree24067851c7b5315f1b6c0ade463d039ee3e65a61 /arch/powerpc/boot/stdlib.h
parent[POWERPC] bootwrapper: flatdevtree fixes (diff)
downloadkernel-qcow2-linux-9de782770b84768e1aa2e6454223ef30768de84e.tar.gz
kernel-qcow2-linux-9de782770b84768e1aa2e6454223ef30768de84e.tar.xz
kernel-qcow2-linux-9de782770b84768e1aa2e6454223ef30768de84e.zip
[POWERPC] bootwrapper: Add strtoull()
This will be needed by PlanetCore firmware support. Signed-off-by: Scott Wood <scottwood@freescale.com> Acked-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/stdlib.h')
-rw-r--r--arch/powerpc/boot/stdlib.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/powerpc/boot/stdlib.h b/arch/powerpc/boot/stdlib.h
new file mode 100644
index 000000000000..1bf01ac73aba
--- /dev/null
+++ b/arch/powerpc/boot/stdlib.h
@@ -0,0 +1,6 @@
+#ifndef _PPC_BOOT_STDLIB_H_
+#define _PPC_BOOT_STDLIB_H_
+
+unsigned long long int strtoull(const char *ptr, char **end, int base);
+
+#endif