summaryrefslogtreecommitdiff
path: root/rts/posix
diff options
context:
space:
mode:
Diffstat (limited to 'rts/posix')
-rw-r--r--rts/posix/Clock.h8
-rw-r--r--rts/posix/GetEnv.c8
-rw-r--r--rts/posix/GetTime.c8
-rw-r--r--rts/posix/Itimer.c8
-rw-r--r--rts/posix/Itimer.h8
-rw-r--r--rts/posix/OSMem.c8
-rw-r--r--rts/posix/OSThreads.c8
-rw-r--r--rts/posix/Select.c8
-rw-r--r--rts/posix/Select.h8
-rw-r--r--rts/posix/Signals.c8
-rw-r--r--rts/posix/Signals.h8
-rw-r--r--rts/posix/TTY.c8
-rw-r--r--rts/posix/TTY.h8
13 files changed, 0 insertions, 104 deletions
diff --git a/rts/posix/Clock.h b/rts/posix/Clock.h
index 16d9252460..2c71d7a75d 100644
--- a/rts/posix/Clock.h
+++ b/rts/posix/Clock.h
@@ -33,11 +33,3 @@
#endif
#endif /* POSIX_CLOCK_H */
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/GetEnv.c b/rts/posix/GetEnv.c
index de6d5cd989..e3f731cfed 100644
--- a/rts/posix/GetEnv.c
+++ b/rts/posix/GetEnv.c
@@ -42,11 +42,3 @@ void getProgEnvv(int *out_envc, char **out_envv[]) {
void freeProgEnvv(int envc STG_UNUSED, char *envv[] STG_UNUSED) {
/* nothing */
}
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/GetTime.c b/rts/posix/GetTime.c
index d44fc9a566..3e0e1cabfc 100644
--- a/rts/posix/GetTime.c
+++ b/rts/posix/GetTime.c
@@ -247,11 +247,3 @@ getPageFaults(void)
return(t.ru_majflt);
#endif
}
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/Itimer.c b/rts/posix/Itimer.c
index f8b9f66d4d..57c7741cc7 100644
--- a/rts/posix/Itimer.c
+++ b/rts/posix/Itimer.c
@@ -280,11 +280,3 @@ rtsTimerSignal(void)
{
return ITIMER_SIGNAL;
}
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/Itimer.h b/rts/posix/Itimer.h
index 3ca2f5b097..7996da7c94 100644
--- a/rts/posix/Itimer.h
+++ b/rts/posix/Itimer.h
@@ -10,11 +10,3 @@
#define ITIMER_H
#endif /* ITIMER_H */
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/OSMem.c b/rts/posix/OSMem.c
index eb51e98e72..8a6a85e3ad 100644
--- a/rts/posix/OSMem.c
+++ b/rts/posix/OSMem.c
@@ -318,11 +318,3 @@ void setExecutable (void *p, W_ len, rtsBool exec)
barf("setExecutable: failed to protect 0x%p\n", p);
}
}
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/OSThreads.c b/rts/posix/OSThreads.c
index f42b4e964c..e627babd98 100644
--- a/rts/posix/OSThreads.c
+++ b/rts/posix/OSThreads.c
@@ -353,11 +353,3 @@ KernelThreadId kernelThreadId (void)
return 0;
#endif
}
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/Select.c b/rts/posix/Select.c
index 29a1dd144d..38b0821036 100644
--- a/rts/posix/Select.c
+++ b/rts/posix/Select.c
@@ -423,11 +423,3 @@ awaitEvent(rtsBool wait)
}
#endif /* THREADED_RTS */
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/Select.h b/rts/posix/Select.h
index b63e45a1ae..50d49d4ba5 100644
--- a/rts/posix/Select.h
+++ b/rts/posix/Select.h
@@ -15,11 +15,3 @@ typedef StgWord LowResTime;
RTS_PRIVATE LowResTime getDelayTarget (HsInt us);
#endif /* POSIX_SELECT_H */
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/Signals.c b/rts/posix/Signals.c
index ba4a8b75ea..36a72a5c8e 100644
--- a/rts/posix/Signals.c
+++ b/rts/posix/Signals.c
@@ -694,11 +694,3 @@ resetDefaultHandlers(void)
}
#endif /* RTS_USER_SIGNALS */
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/Signals.h b/rts/posix/Signals.h
index 9500fceeb4..3100d39537 100644
--- a/rts/posix/Signals.h
+++ b/rts/posix/Signals.h
@@ -31,11 +31,3 @@ extern StgInt *signal_handlers;
#include "EndPrivate.h"
#endif /* POSIX_SIGNALS_H */
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/TTY.c b/rts/posix/TTY.c
index 009ebd6592..2ce822a99a 100644
--- a/rts/posix/TTY.c
+++ b/rts/posix/TTY.c
@@ -65,11 +65,3 @@ resetTerminalSettings (void)
}
#endif
}
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End:
diff --git a/rts/posix/TTY.h b/rts/posix/TTY.h
index fe3e55b579..7b8e16bb92 100644
--- a/rts/posix/TTY.h
+++ b/rts/posix/TTY.h
@@ -12,11 +12,3 @@
RTS_PRIVATE void resetTerminalSettings (void);
#endif /* POSIX_TTY_H */
-
-// Local Variables:
-// mode: C
-// fill-column: 80
-// indent-tabs-mode: nil
-// c-basic-offset: 4
-// buffer-file-coding-system: utf-8-unix
-// End: