~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to src/lib/libipv1/ip_error.gbl

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _TMPL_H
2
 
#  include <libipv1/tmpl.h>
3
 
#endif
4
 
#ifndef GLOBAL_FUNCTION
5
 
#  define GLOBAL_FUNCTION
6
 
#endif
7
 
#ifndef GLOBAL_VA_FUNCTION
8
 
#  define GLOBAL_VA_FUNCTION
9
 
#endif
10
 
extern
11
 
#ifdef __cplusplus
12
 
"C"
13
 
#endif
14
 
 char *
15
 
ip_error_message(
16
 
#if defined(__STDC__) || defined(__cplusplus)
17
 
int errcod
18
 
 
19
 
#endif
20
 
);
21
 
extern
22
 
#ifdef __cplusplus
23
 
"C"
24
 
#endif
25
 
 VOID
26
 
ip_error(
27
 
#if defined(__STDC__) || defined(__cplusplus)
28
 
char *msg,
29
 
...
30
 
#endif
31
 
);
32
 
extern
33
 
#ifdef __cplusplus
34
 
"C"
35
 
#endif
36
 
 VOID
37
 
ip_warn(
38
 
#if defined(__STDC__) || defined(__cplusplus)
39
 
char *msg,
40
 
...
41
 
#endif
42
 
);
 
1
#ifdef __cplusplus
 
2
extern "C" {
 
3
#endif
 
4
 
 
5
char *ip_error_message(int errcod);
 
6
void ip_error(char *msg, ...);
 
7
void ip_warn(char *msg, ...);
 
8
 
 
9
#ifdef __cplusplus
 
10
}
 
11
#endif