blob: e64e1db0465e9bf2ef7ad111b5a8b6f8ec350bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
*** obstack.h 2005-10-15 01:23:50.000000000 +0200
--- obstack.h 2006-07-22 17:48:51.000000000 +0200
***************
*** 193,202 ****
more memory. This can be set to a user defined function which
should either abort gracefully or use longjump - but shouldn't
return. The default action is to print a message and abort. */
! extern void (*obstack_alloc_failed_handler) (void);
/* Exit value used when `print_and_abort' is used. */
! extern int obstack_exit_failure;
/* Pointer to beginning of object being allocated or to be allocated next.
Note that this might not be the final address of the object
--- 192,201 ----
more memory. This can be set to a user defined function which
should either abort gracefully or use longjump - but shouldn't
return. The default action is to print a message and abort. */
! extern DLL_VARIABLE void (*obstack_alloc_failed_handler) (void);
/* Exit value used when `print_and_abort' is used. */
! extern DLL_VARIABLE int obstack_exit_failure;
/* Pointer to beginning of object being allocated or to be allocated next.
Note that this might not be the final address of the object
|