X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fcardfile.c;h=dc87841301ecb9386924af57098126c50814942b;hp=755a28b7baae0ac73953911ee7b7a4ae7e61cded;hb=4ae6d1c18d0dec956b814865893812655ec3a22c;hpb=772f879d17117c5b766022f28099e341ebea825b diff --git a/test/cardfile.c b/test/cardfile.c index 755a28b7..dc878413 100644 --- a/test/cardfile.c +++ b/test/cardfile.c @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey * - * $Id: cardfile.c,v 1.31 2007/07/21 17:41:55 tom Exp $ + * $Id: cardfile.c,v 1.32 2007/08/11 16:34:27 tom Exp $ * * File format: text beginning in column 1 is a title; other text is content. */ @@ -71,7 +71,7 @@ static char default_name[] = "cardfile.dat"; #if !HAVE_STRDUP #define strdup my_strdup static char * -strdup(char *s) +strdup(const char *s) { char *p = (char *) malloc(strlen(s) + 1); if (p)