#include <sys/types.h>
#include <stdio.h>
-#include <stdlib.h> /* voorkomt dat je bij malloc type moet aangeven */
+#include <stdlib.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#include <pwd.h>
#endif
-/* MAART: #ifndef __FreeBSD__ */
#if !defined(__FreeBSD__) && !defined(__APPLE__)
#include <malloc.h>
#endif
int BLI_compare(struct direntry *entry1, struct direntry *entry2)
{
- /* type is gelijk aan stat.st_mode */
+ /* type is equal to stat.st_mode */
if (S_ISDIR(entry1->type)){
if (S_ISDIR(entry2->type)==0) return (-1);