From 0f60ac9155a721085315389b65c73380e001249f Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 20 Oct 1998 23:58:32 +0000 Subject: Fixed definitions of scandir, numericsort, and alphasort (no const!) git-svn-id: file:///fltk/svn/fltk/trunk@26 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/numericsort.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/numericsort.c') diff --git a/src/numericsort.c b/src/numericsort.c index 8a785d404..a0522fbb5 100644 --- a/src/numericsort.c +++ b/src/numericsort.c @@ -53,7 +53,7 @@ #ifdef __cplusplus extern "C" #endif -int numericsort(const struct dirent **A, const struct dirent **B) { +int numericsort(struct dirent **A, struct dirent **B) { const char* a = (*A)->d_name; const char* b = (*B)->d_name; int ret = 0; @@ -80,6 +80,6 @@ int numericsort(const struct dirent **A, const struct dirent **B) { } } -// -// End of "$Id: numericsort.c,v 1.4 1998/10/19 20:46:57 mike Exp $". -// +/* + * End of "$Id: numericsort.c,v 1.5 1998/10/20 23:58:31 mike Exp $". + */ -- cgit v1.2.3