diff options
Diffstat (limited to 'gl/strndup.c')
-rw-r--r-- | gl/strndup.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gl/strndup.c b/gl/strndup.c index 290f494..507e9c0 100644 --- a/gl/strndup.c +++ b/gl/strndup.c | |||
@@ -1,11 +1,11 @@ | |||
1 | /* A replacement function, for systems that lack strndup. | 1 | /* A replacement function, for systems that lack strndup. |
2 | 2 | ||
3 | Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006 Free | 3 | Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007 |
4 | Software Foundation, Inc. | 4 | Free Software Foundation, Inc. |
5 | 5 | ||
6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
7 | under the terms of the GNU General Public License as published by the | 7 | under the terms of the GNU General Public License as published by the |
8 | Free Software Foundation; either version 2, or (at your option) any | 8 | Free Software Foundation; either version 3, or (at your option) any |
9 | later version. | 9 | later version. |
10 | 10 | ||
11 | This program is distributed in the hope that it will be useful, | 11 | This program is distributed in the hope that it will be useful, |
@@ -18,12 +18,10 @@ | |||
18 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ | 18 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
19 | 19 | ||
20 | #include <config.h> | 20 | #include <config.h> |
21 | #include "strndup.h" | ||
22 | 21 | ||
23 | #include <stdlib.h> | ||
24 | #include <string.h> | 22 | #include <string.h> |
25 | 23 | ||
26 | #include "strnlen.h" | 24 | #include <stdlib.h> |
27 | 25 | ||
28 | char * | 26 | char * |
29 | strndup (char const *s, size_t n) | 27 | strndup (char const *s, size_t n) |