From patchwork Mon Feb 18 00:12:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Bombe X-Patchwork-Id: 2154741 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 14C2C3FCA4 for ; Mon, 18 Feb 2013 00:51:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756386Ab3BRAvS (ORCPT ); Sun, 17 Feb 2013 19:51:18 -0500 Received: from infernal.debian.net ([176.28.9.132]:44722 "EHLO infernal.debian.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756164Ab3BRAvR (ORCPT ); Sun, 17 Feb 2013 19:51:17 -0500 Received: from ppp-188-174-185-111.dynamic.mnet-online.de ([188.174.185.111] helo=amos.fritz.box) by infernal.debian.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1U7ELd-0001tt-22; Mon, 18 Feb 2013 01:12:45 +0100 Received: from andreas by amos.fritz.box with local (Exim 4.80) (envelope-from ) id 1U7ELc-00025w-KO; Mon, 18 Feb 2013 01:12:44 +0100 Date: Mon, 18 Feb 2013 01:12:44 +0100 From: Andreas Bombe To: linux-media@vger.kernel.org Cc: Laurent Pinchart Subject: [media-ctl PATCH] Add missing stdlib.h and ctype.h includes Message-ID: <20130218001244.GA7932@amos.fritz.box> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org src/mediactl.c needs ctype.h for its use of isspace(). src/v4l2subdev.c needs stdlib.h for strtoul() and ctype.h for isspace() and isupper(). Signed-off-by: Andreas Bombe Acked-by: Laurent Pinchart --- src/mediactl.c | 1 + src/v4l2subdev.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/mediactl.c b/src/mediactl.c index 46562de..c2f985a 100644 --- a/src/mediactl.c +++ b/src/mediactl.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include diff --git a/src/v4l2subdev.c b/src/v4l2subdev.c index d0c37f3..87d7eb7 100644 --- a/src/v4l2subdev.c +++ b/src/v4l2subdev.c @@ -26,6 +26,8 @@ #include #include #include +#include +#include #include #include #include