libsim Versione 7.1.11
|
◆ stdin_unit
standard input Definizione alla linea 235 del file io_units.F90. 235! Copyright (C) 2010 ARPA-SIM <urpsim@smr.arpa.emr.it>
236! authors:
237! Davide Cesari <dcesari@arpa.emr.it>
238! Paolo Patruno <ppatruno@arpa.emr.it>
239
240! This program is free software; you can redistribute it and/or
241! modify it under the terms of the GNU General Public License as
242! published by the Free Software Foundation; either version 2 of
243! the License, or (at your option) any later version.
244
245! This program is distributed in the hope that it will be useful,
246! but WITHOUT ANY WARRANTY; without even the implied warranty of
247! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
248! GNU General Public License for more details.
249
250! You should have received a copy of the GNU General Public License
251! along with this program. If not, see <http://www.gnu.org/licenses/>.
252#include "config.h"
253
272IMPLICIT NONE
273
274! These should be set by autoconf and included
275INTEGER, PARAMETER :: stdin_unit = 5
276INTEGER, PARAMETER :: stdout_unit = 6
277INTEGER, PARAMETER :: stderr_unit = 0
278
|