| 1 |
14 |
jlechner |
/* Implementation of the PERROR intrinsic.
|
| 2 |
|
|
Copyright (C) 2005 Free Software Foundation, Inc.
|
| 3 |
|
|
Contributed by François-Xavier Coudert <coudert@clipper.ens.fr>
|
| 4 |
|
|
|
| 5 |
|
|
This file is part of the GNU Fortran 95 runtime library (libgfortran).
|
| 6 |
|
|
|
| 7 |
|
|
Libgfortran is free software; you can redistribute it and/or
|
| 8 |
|
|
modify it under the terms of the GNU General Public
|
| 9 |
|
|
License as published by the Free Software Foundation; either
|
| 10 |
|
|
version 2 of the License, or (at your option) any later version.
|
| 11 |
|
|
|
| 12 |
|
|
In addition to the permissions in the GNU General Public License, the
|
| 13 |
|
|
Free Software Foundation gives you unlimited permission to link the
|
| 14 |
|
|
compiled version of this file into combinations with other programs,
|
| 15 |
|
|
and to distribute those combinations without any restriction coming
|
| 16 |
|
|
from the use of this file. (The General Public License restrictions
|
| 17 |
|
|
do apply in other respects; for example, they cover modification of
|
| 18 |
|
|
the file, and distribution when not linked into a combine
|
| 19 |
|
|
executable.)
|
| 20 |
|
|
|
| 21 |
|
|
Libgfortran is distributed in the hope that it will be useful,
|
| 22 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 23 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 24 |
|
|
GNU General Public License for more details.
|
| 25 |
|
|
|
| 26 |
|
|
You should have received a copy of the GNU General Public
|
| 27 |
|
|
License along with libgfortran; see the file COPYING. If not,
|
| 28 |
|
|
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
| 29 |
|
|
Boston, MA 02110-1301, USA. */
|
| 30 |
|
|
|
| 31 |
|
|
#include "config.h"
|
| 32 |
|
|
#include "libgfortran.h"
|
| 33 |
|
|
|
| 34 |
|
|
#include <stdio.h>
|
| 35 |
|
|
#include <errno.h>
|
| 36 |
|
|
|
| 37 |
|
|
#include "../io/io.h"
|
| 38 |
|
|
|
| 39 |
|
|
#ifdef HAVE_STRING_H
|
| 40 |
|
|
#include <string.h>
|
| 41 |
|
|
#endif
|
| 42 |
|
|
|
| 43 |
|
|
/* SUBROUTINE PERROR(STRING)
|
| 44 |
|
|
CHARACTER(len=*), INTENT(IN) :: STRING */
|
| 45 |
|
|
|
| 46 |
|
|
#ifdef HAVE_PERROR
|
| 47 |
|
|
extern void perror_sub (char *, gfc_charlen_type);
|
| 48 |
|
|
iexport_proto(perror_sub);
|
| 49 |
|
|
|
| 50 |
|
|
void
|
| 51 |
|
|
perror_sub (char *string, gfc_charlen_type string_len)
|
| 52 |
|
|
{
|
| 53 |
|
|
char * str;
|
| 54 |
|
|
|
| 55 |
|
|
/* Trim trailing spaces from paths. */
|
| 56 |
|
|
while (string_len > 0 && string[string_len - 1] == ' ')
|
| 57 |
|
|
string_len--;
|
| 58 |
|
|
|
| 59 |
|
|
/* Make a null terminated copy of the strings. */
|
| 60 |
|
|
str = gfc_alloca (string_len + 1);
|
| 61 |
|
|
memcpy (str, string, string_len);
|
| 62 |
|
|
str[string_len] = '\0';
|
| 63 |
|
|
|
| 64 |
|
|
perror (str);
|
| 65 |
|
|
}
|
| 66 |
|
|
iexport(perror_sub);
|
| 67 |
|
|
#endif
|