summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-12-07 22:11:10 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-12-07 22:11:10 +0000
commit7d1cd94b72a511c43237469540ad49342b6f7cc8 (patch)
tree83a511f9881ea71861dbbcff4b4893991ae2ca6c
parent7834c1c086ad01115efb7713adca3869f2dc9564 (diff)
Need "struct dirent" with C...
git-svn-id: file:///fltk/svn/fltk/trunk@148 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--FL/filename.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/filename.H b/FL/filename.H
index c20059bda..a2d79fe77 100644
--- a/FL/filename.H
+++ b/FL/filename.H
@@ -1,5 +1,5 @@
//
-// "$Id: filename.H,v 1.3 1998/10/21 14:19:43 mike Exp $"
+// "$Id: filename.H,v 1.4 1998/12/07 22:11:10 mike Exp $"
//
// Filename header file for the Fast Light Tool Kit (FLTK).
//
@@ -56,10 +56,10 @@ struct dirent {char d_name[1];};
#endif
-int filename_list(const char *d, dirent ***list);
+int filename_list(const char *d, struct dirent ***list);
#endif
//
-// End of "$Id: filename.H,v 1.3 1998/10/21 14:19:43 mike Exp $".
+// End of "$Id: filename.H,v 1.4 1998/12/07 22:11:10 mike Exp $".
//