Subversion Repositories Tewi

Rev

Rev 257 | Rev 274 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 257 Rev 272
Line 1... Line 1...
1
/* $Id: server.c 257 2024-10-04 05:34:27Z nishi $ */
1
/* $Id: server.c 272 2024-10-07 15:03:00Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "../config.h"
5
#include "../config.h"
6
 
6
 
Line 75... Line 75...
75
#ifdef __HAIKU__
75
#ifdef __HAIKU__
76
#include <OS.h>
76
#include <OS.h>
77
#endif
77
#endif
78
 
78
 
79
#ifndef S_ISDIR
79
#ifndef S_ISDIR
80
#define S_ISDIR(x) ((x)&_S_IFDIR)
80
#define S_ISDIR(x) ((x) & _S_IFDIR)
81
#endif
81
#endif
82
 
82
 
83
extern struct tw_config config;
83
extern struct tw_config config;
84
extern char tw_server[];
84
extern char tw_server[];
85
 
85