summaryrefslogtreecommitdiff
path: root/src/numericsort.c
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-10-20 23:58:32 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-10-20 23:58:32 +0000
commit0f60ac9155a721085315389b65c73380e001249f (patch)
tree86bd321c3b933643754527c4dbe27a7fea34673f /src/numericsort.c
parent74858f12e3d2c25ce53aed7169178615596ae7aa (diff)
Fixed definitions of scandir, numericsort, and alphasort (no const!)
git-svn-id: file:///fltk/svn/fltk/trunk@26 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/numericsort.c')
-rw-r--r--src/numericsort.c8
1 files changed, 4 insertions, 4 deletions
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 $".
+ */