summaryrefslogtreecommitdiff
path: root/src/stdio/remove.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 14:25:31 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 14:25:31 -0500
commit000a7c045c98c30aac86db93f8c9c978e5ca8c59 (patch)
treef882b1258d0c9b32f8517a9557b86e6ebc8aa9bb /src/stdio/remove.c
parentb25685d5dc26370ecae112f805b4141c4efdeea4 (diff)
update standards and safety checks
Diffstat (limited to 'src/stdio/remove.c')
-rw-r--r--src/stdio/remove.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/stdio/remove.c b/src/stdio/remove.c
index 56c678db..2ac91743 100644
--- a/src/stdio/remove.c
+++ b/src/stdio/remove.c
@@ -1,5 +1,4 @@
#if 0
-
#ifndef _POSIX_SOURCE
#define _POSIX_SOURCE
#define POSIX_FORCED
@@ -22,6 +21,9 @@
int remove(const char *filename)
{
struct stat st;
+
+ SIGNAL_SAFE(0);
+
stat(filename, &st);
if (S_ISDIR(st.st_mode)) {
return rmdir(filename);
@@ -39,5 +41,4 @@ IMPLEMENTATION(Whether the file is removed if it is open)
STDC(1)
*/
-
#endif