~ubuntu-branches/ubuntu/hoary/s390-tools/hoary

« back to all changes in this revision

Viewing changes to zipl/include/error.h

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2004-06-27 18:45:15 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040627184515-ch5tgtkar5lp3bgz
Tags: 1.3.1-2
* zipl:
  - Add support for optional ipl images.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * s390-tools/zipl/include/error.h
 
3
 *   Functions to handle error messages.
 
4
 *
 
5
 * Copyright (C) 2001-2003 IBM Deutschland Entwicklung GmbH, IBM Corporation
 
6
 *
 
7
 * Author(s): Carsten Otte <cotte@de.ibm.com>
 
8
 *            Peter Oberparleiter <Peter.Oberparleiter@de.ibm.com>
 
9
 */
 
10
 
 
11
#ifndef ERROR_H
 
12
#define ERROR_H
 
13
 
 
14
#include "zipl.h"
 
15
 
 
16
 
 
17
void error_reason(const char* fmt, ...);
 
18
void error_text(const char* fmt, ...);
 
19
void error_clear_reason(void);
 
20
void error_clear_text(void);
 
21
void error_print(void);
 
22
 
 
23
#endif /* not ERROR_H */