X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Finclude%2Flibc%2Fstring.h;h=5a81cb843b75549c43decd57097f6cde8468da72;hp=74b205c38bb8fbb281967806b2aa8a72116e1710;hb=af355c370ac80f8e19d6375cb3070213c29a92eb;hpb=9e5b4c4140241b45094c87ac15f75fead726981f diff --git a/palacios/include/libc/string.h b/palacios/include/libc/string.h index 74b205c..5a81cb8 100644 --- a/palacios/include/libc/string.h +++ b/palacios/include/libc/string.h @@ -1,7 +1,7 @@ /* * String library * Copyright (c) 2001,2004 David H. Hovemeyer - * $Revision: 1.2 $ + * $Revision: 1.3 $ * * This is free software. You are permitted to use, * redistribute, and modify it as specified in the file "COPYING". @@ -46,6 +46,8 @@ char *strncat(char *s1, const char *s2, size_t limit); int fprintf(FILE *file, char *fmt, ...); //int fflush(FILE *file); + + void abort (void) __attribute__ ((__noreturn__)); #define _tolower(c) ((c) + 'a' - 'A')