From bc98f6a029c34eb44911428877f5ac72e2740487 Mon Sep 17 00:00:00 2001
From: Paul Sajna <paulsajna@gmail.com>
Date: Sun, 11 Mar 2018 11:22:10 -0700
Subject: [PATCH] git rm include/sys/stat.h

---
 include/sys/stat.h | 39 ---------------------------------------
 1 file changed, 39 deletions(-)
 delete mode 100644 include/sys/stat.h

diff --git a/include/sys/stat.h b/include/sys/stat.h
deleted file mode 100644
index 97836d36..00000000
--- a/include/sys/stat.h
+++ /dev/null
@@ -1,39 +0,0 @@
-#ifndef _STAT_H
-#define _STAT_H
-
-#include <sys/types.h>
-
-struct stat {
-  dev_t st_dev;
-  ino_t st_ino;
-  nlink_t st_nlink;
-  mode_t st_mode;
-  uid_t st_uid;
-  gid_t st_gid;
-  dev_t st_rdev;
-  off_t st_size;
-  blksize_t st_blksize;
-  time_t st_atim;
-  time_t st_mtim;
-  time_t st_ctim;
-};
-
-int chmod(const char *path, mode_t mode);
-
-int fchmod(int fildes, mode_t mode);
-
-int fstat(int fildes, struct stat *buf);
-
-int lstat(const char *path, struct stat *buf);
-
-int mkdir(const char *path, mode_t mode);
-
-int mkfifo(const char *path, mode_t mode);
-
-int mknod(const char *path, mode_t mode, dev_t dev);
-
-int stat(const char *file, struct stat *buf);
-
-mode_t umask(mode_t mask);
-
-#endif /* _STAT_H */
-- 
GitLab