From 132863aa4d50fefb0bd28f05de4e816e56c87e77 Mon Sep 17 00:00:00 2001 From: Cyril Hrubis Date: Wed, 18 Dec 2013 11:45:36 +0100 Subject: [PATCH] demos: c_simple: Remove abort.c Signed-off-by: Cyril Hrubis --- demos/c_simple/Makefile | 2 +- demos/c_simple/abort.c | 33 --------------------------------- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 demos/c_simple/abort.c diff --git a/demos/c_simple/Makefile b/demos/c_simple/Makefile index c32d8734..2d918349 100644 --- a/demos/c_simple/Makefile +++ b/demos/c_simple/Makefile @@ -17,7 +17,7 @@ APPS=backend_example loaders_example loaders filters_symmetry gfx_koch\ virtual_backend_example meta_data meta_data_dump tmp_file showimage\ v4l2_show v4l2_grab convolution weighted_median shapetest koch \ input_example fileview linetest randomshapetest fonttest\ - loaders_register blittest textaligntest abort sin_AA x11_windows\ + loaders_register blittest textaligntest sin_AA x11_windows\ debug_handler gaussian_noise byte_utils version pretty_print timers\ zip_container backend_timers_example diff --git a/demos/c_simple/abort.c b/demos/c_simple/abort.c deleted file mode 100644 index d9c3e18b..00000000 --- a/demos/c_simple/abort.c +++ /dev/null @@ -1,33 +0,0 @@ -/***************************************************************************** - * This file is part of gfxprim library. * - * * - * Gfxprim is free software; you can redistribute it and/or * - * modify it under the terms of the GNU Lesser General Public * - * License as published by the Free Software Foundation; either * - * version 2.1 of the License, or (at your option) any later version. * - * * - * Gfxprim is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * - * Lesser General Public License for more details. * - * * - * You should have received a copy of the GNU Lesser General Public * - * License along with gfxprim; if not, write to the Free Software * - * Foundation, Inc., 51 Franklin Street, Fifth Floor, * - * Boston, MA 02110-1301 USA * - * * - * Copyright (C) 2009-2012 Cyril Hrubis * - * * - *****************************************************************************/ - -#include - -int main(void) -{ - GP_Context *ctx; - - /* this call causes library to abort because of invalid parameters */ - ctx = GP_ContextAlloc(0, 0, -1); - - return 0; -} -- 2.11.4.GIT