1: #ifndef lint
2: static char *rcsid_Error_c = "$Header: Error.c,v 10.3 86/02/01 16:22:48 tony Rel $";
3: #endif lint
4:
5: /************************************************************************
6: * *
7: * Copyright (c) 1986 by *
8: * Digital Equipment Corporation, Maynard, MA *
9: * All Rights Reserved. *
10: * *
11: * Permission to use, copy, modify, and distribute this software *
12: * and its documentation is hereby granted only to licensees of *
13: * The Regents of the University of California pursuant to their *
14: * license agreement for the Berkeley Software Distribution *
15: * provided that the following appears on all copies. *
16: * *
17: * "LICENSED FROM DIGITAL EQUIPMENT CORPORATION *
18: * COPYRIGHT (C) 1986 *
19: * DIGITAL EQUIPMENT CORPORATION *
20: * MAYNARD, MA *
21: * ALL RIGHTS RESERVED. *
22: * *
23: * THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT *
24: * NOTICE AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL *
25: * EQUIPMENT CORPORATION. DIGITAL MAKES NO REPRESENTATIONS *
26: * ABOUT SUITABILITY OF THIS SOFTWARE FOR ANY PURPOSE. IT IS *
27: * SUPPLIED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY. *
28: * *
29: * IF THE UNIVERSITY OF CALIFORNIA OR ITS LICENSEES MODIFY *
30: * THE SOFTWARE IN A MANNER CREATING DERIVATIVE COPYRIGHT *
31: * RIGHTS APPROPRIATE COPYRIGHT LEGENDS MAY BE PLACED ON THE *
32: * DERIVATIVE WORK IN ADDITION TO THAT SET FORTH ABOVE." *
33: * *
34: ************************************************************************/
35:
36:
37: /*
38: * MODIFICATION HISTORY
39: *
40: * 000 -- M. Gancarz, DEC Ultrix Engineering Group
41: */
42:
43: #ifndef lint
44: static char *sccsid = "@(#)Error.c 3.8 1/24/86";
45: #endif
46:
47: #include "uwm.h"
48: /*
49: * Default error reporting routine. Called when a random uwm error
50: * is encountered.
51: */
52: Error(s)
53: char *s; /* Error description string */
54: {
55: fprintf(stderr, "uwm: %s\n", s);
56: exit(1);
57: }
Defined functions
Error
defined in line
52; used 41 times
- in /usr/src/new/X/uwm/GetButton.c line
219
- in /usr/src/new/X/uwm/Menu.c line
82,
247,
287,
293,
320
- in /usr/src/new/X/uwm/Move.c line
81
- in /usr/src/new/X/uwm/MoveOpaque.c line
73
- in /usr/src/new/X/uwm/NewIconify.c line
90
- in /usr/src/new/X/uwm/Refresh.c line
62,
69
- in /usr/src/new/X/uwm/Resize.c line
110
- in /usr/src/new/X/uwm/StoreCursors.c line
81,
95,
109,
123,
137,
151,
165
- in /usr/src/new/X/uwm/uwm.c line
165,
176,
182,
190,
196,
205,
212,
221,
282-292(3),
303,
309,
315,
336,
601,
612,
660,
714,
722,
730
- in /usr/src/new/X/uwm/uwm.h line
341
Defined variables