5dc245e739
core: Make mes src/ c files separate compilation units. * include/mes/constants.h: New file. * include/mes/macros.h: New file. * include/mes/mes.h: New file. * src/gc.c: Update. * src/hash.c: Update. * src/lib.c: Update. * src/math.c: Update. * src/mes.c: Update. * src/module.c: Update. * src/posix.c: Update. * src/reader.c: Update. * src/string.c: Update. * src/struct.c: Update. * src/vector.c: Update. mes: Update datadir. * src/mes.c (g_datadir): New global. (open_boot): Rename from read_boot. (read_boot): New function. * mes/module/mes/boot-0.scm: Move from boot-0.scm.in * configure: Update. * configure.sh: Update. mescc: Create libraries from separate files. * .gitignore: Update. * build-aux/bootstrap-mes.sh: Remove. * build-aux/bootstrap.sh.in: Remove. * build-aux/build-guile.sh: Update. * build-aux/build-mes.sh: Update. * build-aux/build-scaffold.sh: New file. * build-aux/build.sh.in: Update. * build-aux/cc.sh: Update. * build-aux/check-tcc.sh: Remove. * build-aux/config.sh.in: New file. * build-aux/config.sh: Remove. * build-aux/install.sh.in: Update. * build-aux/test-boot.sh: New file. * build-aux/test-c.sh: New file. * build-aux/test-driver: New file. * build-aux/test-suite.sh: New file. * build-aux/trace.sh: Update. * build-aux/uninstall.sh.in: Update. * configure: Update. * configure.sh: Update. * lib/linux/x86-mes-mescc/crt1.c: Move from lib/linux/x86-mes. * lib/linux/x86-mes-mescc/mini.c: Likewise. * lib/linux/x86_64-mes-mescc/crt1.c: Move from lib/linux/x86_64-mes. * lib/linux/x86_64-mes-mescc/mini.c: Likewise. * lib/linux/x86-mes-gcc/syscall.c: Rename from mes.c. * lib/linux/x86-mes-mescc/syscall.c: Likewise. * lib/linux/x86_64-mes-gcc/syscall.c: Likewise. * lib/linux/x86_64-mes-mescc/syscall.c: Likewise. * lib/mes/mes_open.c: Include config.h. * lib/tests/stdio/70-printf-hello.c: Likewise. * lib/tests/stdio/70-printf-simple.c: Likewise. * scaffold/gc-test.sh: New file. * simple.sh: Update.
121 lines
3 KiB
C
121 lines
3 KiB
C
/* -*-comment-start: "//";comment-end:""-*-
|
|
* GNU Mes --- Maxwell Equations of Software
|
|
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
*
|
|
* This file is part of GNU Mes.
|
|
*
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
* your option) any later version.
|
|
*
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef __MES_SYS_STAT_H
|
|
#define __MES_SYS_STAT_H 1lei
|
|
|
|
#if SYSTEM_LIBC
|
|
#undef __MES_SYS_STAT_H
|
|
#include_next <sys/stat.h>
|
|
|
|
#else // ! SYSTEM_LIBC
|
|
|
|
#include <time.h>
|
|
#include <sys/types.h>
|
|
|
|
#ifndef __MES_MODE_T
|
|
#define __MES_MODE_T
|
|
typedef int mode_t;
|
|
#endif
|
|
|
|
// *INDENT-OFF*
|
|
#if __i386__
|
|
struct stat
|
|
{
|
|
unsigned long st_dev;
|
|
unsigned long st_ino;
|
|
unsigned short st_mode;
|
|
unsigned short st_nlink;
|
|
unsigned short st_uid;
|
|
unsigned short st_gid;
|
|
unsigned long st_rdev;
|
|
long st_size;
|
|
unsigned long st_blksize;
|
|
unsigned long st_blocks;
|
|
time_t st_atime;
|
|
unsigned long st_atime_usec;
|
|
time_t st_mtime;
|
|
unsigned long st_mtime_usec;
|
|
time_t st_ctime;
|
|
unsigned long st_ctime_usec;
|
|
unsigned long __foo0;
|
|
unsigned long __foo1;
|
|
};
|
|
#elif __x86_64__
|
|
struct stat
|
|
{
|
|
unsigned long st_dev;
|
|
unsigned long st_ino;
|
|
unsigned int st_mode;
|
|
unsigned int st_nlink;
|
|
unsigned int st_uid;
|
|
unsigned int st_gid;
|
|
unsigned long st_rdev;
|
|
long st_size;
|
|
unsigned long st_blksize;
|
|
unsigned long st_blocks;
|
|
time_t st_atime;
|
|
unsigned long st_atime_usec;
|
|
time_t st_mtime;
|
|
unsigned long st_mtime_usec;
|
|
time_t st_ctime;
|
|
unsigned long st_ctime_usec;
|
|
unsigned long __foo0;
|
|
unsigned long __foo1;
|
|
};
|
|
#endif
|
|
// *INDENT-ON*
|
|
|
|
int chmod (char const *file_name, mode_t mode);
|
|
int fstat (int filedes, struct stat *buf);
|
|
int mkdir (char const *file_name, mode_t mode);
|
|
int chown (char const *file_name, uid_t owner, gid_t group);
|
|
int rmdir (char const *file_name);
|
|
int stat (char const *file_name, struct stat *buf);
|
|
|
|
#define S_IFCHR 0020000
|
|
#define S_IFDIR 0040000
|
|
#define S_IFBLK 0060000
|
|
#define S_IFREG 0100000
|
|
#define S_IFLNK 0120000
|
|
#define S_IFMT 0170000
|
|
|
|
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
|
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
|
|
|
#define S_IRWXU 00700
|
|
#define S_IXUSR 00100
|
|
#define S_IWUSR 00200
|
|
#define S_IRUSR 00400
|
|
|
|
#define S_ISUID 0400
|
|
#define S_ISGID 02000
|
|
#define S_IXGRP 00010
|
|
#define S_IXOTH 00001
|
|
#define S_IRGRP 00040
|
|
#define S_IROTH 00004
|
|
#define S_IWGRP 00020
|
|
#define S_IWOTH 00002
|
|
#define S_IRWXG 00070
|
|
#define S_IRWXO 00007
|
|
|
|
#endif // ! SYSTEM_LIBC
|
|
|
|
#endif // __MES_SYS_STAT_H
|