Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9953 → Rev 9954

/contrib/sdk/sources/newlib/libc/include/sys/unistd.h
10,10 → 10,11
#define __need_ptrdiff_t
#include <sys/cdefs.h>
#include <sys/types.h>
#include <sys/ksys.h>
#include <sys/_types.h>
#include <stddef.h>
 
extern char **environ;
//extern char **environ;
 
void _EXFUN(_exit, (int __status ) _ATTRIBUTE ((__noreturn__)));
 
165,7 → 166,7
int _EXFUN(rresvport, (int *__alport));
int _EXFUN(revoke, (char *__path));
#endif
int _EXFUN(rmdir, (const char *__path ));
#define rmdir(__path) _ksys_rmdir(__path)
#if __BSD_VISIBLE
int _EXFUN(ruserok, (const char *rhost, int superuser, const char *ruser, const char *luser));
#endif
244,11 → 245,12
 
#if defined(__CYGWIN__) || defined(__rtems__) || defined(__aarch64__) || defined (__arm__) || defined(__sh__) || defined(__SPU__)
#if !defined(__INSIDE_CYGWIN__)
int _EXFUN(ftruncate, (int __fd, off_t __length));
int _EXFUN(truncate, (const char *, off_t __length));
#endif
#endif
 
int _EXFUN(ftruncate, (int __fd, off_t __length));
 
#if defined(__CYGWIN__) || defined(__rtems__)
int _EXFUN(getdtablesize, (void));
int _EXFUN(setdtablesize, (int));