All: Cleanup all files

Add newline to end of files and remove whitespace from end of lines
This commit is contained in:
2024-01-24 14:43:46 +02:00
parent 3441f63298
commit dfe5a2d665
226 changed files with 466 additions and 460 deletions

View File

@@ -11,4 +11,4 @@
#define __END_DECLS
#endif
#endif
#endif

View File

@@ -34,7 +34,7 @@ struct rlimit
struct rusage
{
struct timeval ru_utime; /* User time used. */
struct timeval ru_stime; /* System time used. */
struct timeval ru_stime; /* System time used. */
};
#define RLIMIT_CORE 0

View File

@@ -24,7 +24,7 @@ typedef struct {
} fd_set;
#define FD_CLR(fd, setp) \
do { \
do { \
__fd_mask off = (fd) / __FD_MASK_SIZE; \
__fd_mask bit = (fd) % __FD_MASK_SIZE; \
(setp)->__bits[off] &= ~((__fd_mask)1 << bit); \
@@ -38,7 +38,7 @@ typedef struct {
})
#define FD_SET(fd, setp) \
do { \
do { \
__fd_mask off = (fd) / __FD_MASK_SIZE; \
__fd_mask bit = (fd) % __FD_MASK_SIZE; \
(setp)->__bits[off] |= ((__fd_mask)1 << bit); \

View File

@@ -16,7 +16,7 @@ __BEGIN_DECLS
#define __need_uid_t
#define __need_gid_t
#define __need_off_t
#define __need_time_t
#define __need_time_t
#include <sys/types.h>
#include <time.h>

View File

@@ -15,4 +15,4 @@ __BEGIN_DECLS
__END_DECLS
#endif
#endif