~ubuntu-branches/ubuntu/vivid/parted/vivid

« back to all changes in this revision

Viewing changes to lib/strerror-override.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-07-30 13:16:15 UTC
  • mfrom: (7.2.34 sid)
  • Revision ID: package-import@ubuntu.com-20140730131615-6uy87mosal6722s6
Tags: 3.2-1
* New upstream release.
* Drop currently-unused build-dependency on po4a (thanks, Johannes
  Schauer).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* strerror-override.h --- POSIX compatible system error routine
2
2
 
3
 
   Copyright (C) 2010-2012 Free Software Foundation, Inc.
 
3
   Copyright (C) 2010-2014 Free Software Foundation, Inc.
4
4
 
5
5
   This program is free software: you can redistribute it and/or modify
6
6
   it under the terms of the GNU General Public License as published by
30
30
   describing the error.  Otherwise return NULL.  */
31
31
# if REPLACE_STRERROR_0 \
32
32
     || GNULIB_defined_ESOCK \
 
33
     || GNULIB_defined_ESTREAMS \
33
34
     || GNULIB_defined_EWINSOCK \
34
35
     || GNULIB_defined_ENOMSG \
35
36
     || GNULIB_defined_EIDRM \
43
44
     || GNULIB_defined_ECONNABORTED \
44
45
     || GNULIB_defined_ESTALE \
45
46
     || GNULIB_defined_EDQUOT \
46
 
     || GNULIB_defined_ECANCELED
47
 
extern const char *strerror_override (int errnum);
 
47
     || GNULIB_defined_ECANCELED \
 
48
     || GNULIB_defined_EOWNERDEAD \
 
49
     || GNULIB_defined_ENOTRECOVERABLE \
 
50
     || GNULIB_defined_EILSEQ
 
51
extern const char *strerror_override (int errnum) _GL_ATTRIBUTE_CONST;
48
52
# else
49
53
#  define strerror_override(ignored) NULL
50
54
# endif