(getpass): Don't barf if getline returns a null BUF.
[glibc.git] / mach / mach_error.h
blob852ab4e6227b1a04c6796213e7df5ee14086737b
1 /*
2 * Mach Operating System
3 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the
9 * software, derivative works or modified versions, and any portions
10 * thereof, and that both notices appear in supporting documentation.
12 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
16 * Carnegie Mellon requests users of this software to return to
18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
27 * HISTORY
28 * $Log$
29 * Revision 1.2 1993/11/23 20:39:08 mib
30 * entered into RCS
32 * Revision 2.2 92/01/16 00:08:10 rpd
33 * Moved from user collection to mk collection.
35 * Revision 2.2 91/03/27 15:39:13 mrt
36 * First checkin
40 * File: mach_error.h
41 * Author: Douglas Orr, Carnegie Mellon University
42 * Date: Mar. 1988
44 * Definitions of routines in mach_error.c
47 #ifndef _MACH_ERROR_
48 #define _MACH_ERROR_ 1
50 #include <mach/error.h>
52 const char *mach_error_string(
54 * Returns a string appropriate to the error argument given
56 #if c_plusplus
57 mach_error_t error_value
58 #endif c_plusplus
61 void mach_error(
63 * Prints an appropriate message on the standard error stream
65 #if c_plusplus
66 char *str,
67 mach_error_t error_value
68 #endif c_plusplus
71 const char *mach_error_type(
73 * Returns a string with the error system, subsystem and code
75 #if c_plusplus
76 mach_error_t error_value
77 #endif c_plusplus
80 #endif _MACH_ERROR_