~ubuntu-branches/ubuntu/gutsy/m4/gutsy

« back to all changes in this revision

Viewing changes to src/m4.c

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-10-03 18:55:52 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041003185552-lajte679mu9qog2g
Tags: 1.4.2-1
* New stable release (portability bug fixes, no user visible changes).
* Changed doc-base and copyright files to UTF-8 (Closes: #266018).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GNU m4 -- A simple macro processor
2
 
   Copyright (C) 1989, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
 
2
 
 
3
   Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 2004 Free
 
4
   Software Foundation, Inc.
3
5
  
4
6
   This program is free software; you can redistribute it and/or modify
5
7
   it under the terms of the GNU General Public License as published by
91
93
void
92
94
reference_error (void)
93
95
{
 
96
  int e = errno;
94
97
  fflush (stdout);
95
98
  fprintf (stderr, "%s:%d: ", current_file, current_line);
 
99
  errno = e;
96
100
}
97
101
 
98
102
#ifdef USE_STACKOVF