Line 1... |
Line 1... |
/* Function declarations for libiberty.
|
/* Function declarations for libiberty.
|
|
|
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
|
|
Note - certain prototypes declared in this header file are for
|
Note - certain prototypes declared in this header file are for
|
functions whoes implementation copyright does not belong to the
|
functions whoes implementation copyright does not belong to the
|
FSF. Those prototypes are present in this file for reference
|
FSF. Those prototypes are present in this file for reference
|
purposes only and their presence in this file should not construed
|
purposes only and their presence in this file should not construed
|
Line 635... |
Line 635... |
#endif
|
#endif
|
|
|
/* Set the title of a process */
|
/* Set the title of a process */
|
extern void setproctitle (const char *name, ...);
|
extern void setproctitle (const char *name, ...);
|
|
|
|
/* Increase stack limit if possible. */
|
|
extern void stack_limit_increase (unsigned long);
|
|
|
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
|
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
|
|
|
/* Drastically simplified alloca configurator. If we're using GCC,
|
/* Drastically simplified alloca configurator. If we're using GCC,
|
we use __builtin_alloca; otherwise we use the C alloca. The C
|
we use __builtin_alloca; otherwise we use the C alloca. The C
|
alloca is always available. You can override GCC by defining
|
alloca is always available. You can override GCC by defining
|