Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / butm / error_macros.h
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
4 *
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
8 */
9
10 #define ERROR_EXIT(evalue) do { \
11 code = evalue; \
12 goto error_exit; \
13 } while (0)
14
15 #define ABORT_EXIT(evalue) do { \
16 code = evalue; \
17 goto abort_exit; \
18 } while (0)