view liboctave/util/f77-dummy-main.cc @ 32832:f3c1a77bcc6b

maint: Replace (void) in function declarations with () where possible See: https://octave.discourse.group/t/remove-void-from-mex-cc-and-elsewhere/5221 Most instances of (void) that could be replaced with () have been replaced already. This changeset is for some files that weren't covered previously. The .c files and their headers are left untouched.
author Arun Giridhar <arungiridhar@gmail.com>
date Wed, 24 Jan 2024 19:31:35 -0500
parents 2e484f9f1f18
children 77410d5eabdf
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1996-2024 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// 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
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if defined (HAVE_CONFIG_H)
#  include "config.h"
#endif

#include <cassert>

// Dummy Fortran main declaration, needed in order to link to some
// Fortran libraries.  See the AC_F77_DUMMY_MAIN macro documentation.
// This function should never be called.

#if defined (F77_DUMMY_MAIN)

extern "C"
int
F77_DUMMY_MAIN ()
{
  assert (0);

  return 1;
}

#endif