~ubuntu-branches/ubuntu/feisty/icoutils/feisty

« back to all changes in this revision

Viewing changes to common/error.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2005-05-26 15:15:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050526151536-uzg8vlhedkx1nwcx
Tags: 0.25.0-1
* New upstream release.
  - 'make distclean' fixed; revert workarounds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* error.c - Error-management and messaging routines.
2
2
 *
3
 
 * Copyright (C) 2001  Oskar Liljeblad
4
 
 *
5
 
 * This file is part of the file renaming utilities (renameutils)
6
 
 * and regex-markup.
7
 
 *
8
 
 * This software is copyrighted work licensed under the terms of the
9
 
 * GNU General Public License. Please consult the file `COPYING' for
10
 
 * details.
 
3
 * Copyright (C) 1998-2005 Oskar Liljeblad
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
11
18
 */
12
19
 
13
 
#ifndef __ERROR_H__
14
 
#define __ERROR_H__
 
20
#ifndef COMMON_ERROR_H
 
21
#define COMMON_ERROR_H
15
22
 
16
 
#include <stdarg.h>
17
 
#include <stdlib.h>             /* for NULL */
18
 
#include <errno.h>              /* for errno below */
19
 
#include "common.h"
 
23
#include <stdarg.h>     /* C89 */
 
24
#include <stddef.h>     /* C89 */
 
25
#include <errno.h>      /* C89 */
20
26
 
21
27
extern void (*program_termination_hook)(void);
22
28
 
37
43
 
38
44
void free_error(void);
39
45
 
 
46
#define errstr strerror(errno)
 
47
 
40
48
/**
41
49
 * @note This function is also defined in error.c
42
50
 */