Some doc path fixes from Anders
[pkg-k5-afs_openafs.git] / src / bucoord / error_macros.h
blobaac6bd6ccf1cb4ebb579297194fa80eb5ce163d4
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
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 */
10 #undef ERROR
11 #define ERROR(evalue) do { \
12 code = evalue; \
13 goto error_exit; \
14 } while (0)
16 #undef ABORT
17 #define ABORT(evalue) do { \
18 code = evalue; \
19 goto abort_exit; \
20 } while (0)