changeset 21356:12d5c0538730

remove unused file oct-openmp.h * oct-openmp.h: Delete. * liboctave/system/module.mk (SYSTEM_INC): Remove oct-openmp.h from the list.
author John W. Eaton <jwe@octave.org>
date Thu, 25 Feb 2016 18:56:53 -0500
parents 28d9bce20aa7
children d00efda9bb92
files liboctave/system/module.mk liboctave/system/oct-openmp.h
diffstat 2 files changed, 0 insertions(+), 37 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/system/module.mk	Thu Feb 25 18:43:08 2016 -0500
+++ b/liboctave/system/module.mk	Thu Feb 25 18:56:53 2016 -0500
@@ -6,7 +6,6 @@
   liboctave/system/mach-info.h \
   liboctave/system/oct-env.h \
   liboctave/system/oct-group.h \
-  liboctave/system/oct-openmp.h \
   liboctave/system/oct-passwd.h \
   liboctave/system/oct-syscalls.h \
   liboctave/system/oct-time.h \
--- a/liboctave/system/oct-openmp.h	Thu Feb 25 18:43:08 2016 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,36 +0,0 @@
-/*
-
-Copyright (C) 2010-2015 David Bateman
-
-This file is part of Octave.
-
-Octave is free software; you can redistribute it and/or modify it
-under the terms of the GNU General Public License as published by the
-Free Software Foundation; either version 3 of the License, or (at your
-option) any later version.
-
-Octave 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 General Public License
-for more details.
-
-You should have received a copy of the GNU General Public License
-along with Octave; see the file COPYING.  If not, see
-<http://www.gnu.org/licenses/>.
-
-*/
-
-#if ! defined (octave_oct_openmp_h)
-#define octave_oct_openmp_h 1
-
-#include "octave-config.h"
-
-/* A macro to make using OpenMP easier, and easier to disable */
-#ifdef HAVE_OPENMP
-#  include <omp.h>
-#  define OCTAVE_OMP_PRAGMA(x) _Pragma (#x)
-#else
-#  define OCTAVE_OMP_PRAGMA(x)
-#endif
-
-#endif