gdb/gdbserver/

* server.h: Remove declaration of 'xsnprintf'.
This commit is contained in:
Yao Qi 2012-08-23 01:41:05 +00:00
parent 7c2df51f4c
commit dc82f37bb7
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2012-08-23 Yao Qi <yao@codesourcery.com>
* server.h: Remove declaration of 'xsnprintf'.
2012-08-22 Keith Seitz <keiths@redhat.com>
* server.h: Include build-gnulib-gbserver/config.h.

View File

@ -368,9 +368,8 @@ void *xmalloc (size_t) ATTR_MALLOC;
void *xrealloc (void *, size_t);
void *xcalloc (size_t, size_t) ATTR_MALLOC;
char *xstrdup (const char *) ATTR_MALLOC;
int xsnprintf (char *str, size_t size, const char *format, ...)
ATTR_FORMAT (printf, 3, 4);;
void freeargv (char **argv);
void perror_with_name (const char *string);
void error (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
void fatal (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);