# HG changeset patch # User John W. Eaton # Date 1456444613 18000 # Node ID 12d5c0538730b39fc0a2d35b72408e463b4e24f8 # Parent 28d9bce20aa7904d4eb19fac3bea9e028e7345bb remove unused file oct-openmp.h * oct-openmp.h: Delete. * liboctave/system/module.mk (SYSTEM_INC): Remove oct-openmp.h from the list. diff -r 28d9bce20aa7 -r 12d5c0538730 liboctave/system/module.mk --- 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 \ diff -r 28d9bce20aa7 -r 12d5c0538730 liboctave/system/oct-openmp.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 -. - -*/ - -#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 -# define OCTAVE_OMP_PRAGMA(x) _Pragma (#x) -#else -# define OCTAVE_OMP_PRAGMA(x) -#endif - -#endif