From patchwork Sat Sep 16 05:10:43 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 814469 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="UoAsOQla"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3xvL481Yvbz9sRV for ; Sat, 16 Sep 2017 15:12:24 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id E5488C21F2A; Sat, 16 Sep 2017 05:11:40 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 59540C21E9D; Sat, 16 Sep 2017 05:11:20 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 7DCF9C21C8F; Sat, 16 Sep 2017 05:11:18 +0000 (UTC) Received: from conuserg-09.nifty.com (conuserg-09.nifty.com [210.131.2.76]) by lists.denx.de (Postfix) with ESMTPS id B8A26C21C93 for ; Sat, 16 Sep 2017 05:11:16 +0000 (UTC) Received: from grover.sesame (FL1-122-131-185-176.osk.mesh.ad.jp [122.131.185.176]) (authenticated) by conuserg-09.nifty.com with ESMTP id v8G5Asop028761; Sat, 16 Sep 2017 14:10:58 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-09.nifty.com v8G5Asop028761 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1505538658; bh=NQpmqvMl/G9qZoEAt8YkCfhlvVw055eae53n2UYNAhI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UoAsOQlaWhJwt1ZsE3++pJc5sZ5NKA+schRjidQ/f41pdxY1c+tsQAX8MZhGOAgeE PAzkllY7FmF19ru6L/ukJ8uBs9BPqkc9LYFsGKiZG0vVrm+eBrYmLkQyWei1MTknah r32AJH4VnrghUHVO7d0oVxZ6to0JsGlWrtHgk7KqvXC6uphZSJLuEVeQrXvwTP8Nfr zzkO1P1TcKBjku9yzOD3S5/Mq3K7IX3tU/gZVc9h36C/39kFNheYcHX0jbtgdOsmMH +KdokQOqzFbpEa18X9ReG6SM9MmIlW9ogHOiKj1fqIG2dLP7dgyzVqjj2p4kLk+ffn As5Z1qu+Gm/2w== X-Nifty-SrcIP: [122.131.185.176] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Sat, 16 Sep 2017 14:10:43 +0900 Message-Id: <1505538646-19191-6-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1505538646-19191-1-git-send-email-yamada.masahiro@socionext.com> References: <1505538646-19191-1-git-send-email-yamada.masahiro@socionext.com> Subject: [U-Boot] [PATCH v2 5/8] vsprintf.h: include X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This header uses ulong, size_t, loff_t. Include to make this header self-contained. Signed-off-by: Masahiro Yamada --- Changes in v2: None include/vsprintf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/vsprintf.h b/include/vsprintf.h index 490c96ca6d1f..33d05aa0c65c 100644 --- a/include/vsprintf.h +++ b/include/vsprintf.h @@ -9,6 +9,7 @@ #define __VSPRINTF_H #include +#include ulong simple_strtoul(const char *cp, char **endp, unsigned int base);