aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaius Mulley <gaius.mulley@southwales.ac.uk>2022-05-18 16:15:44 +0100
committerGaius Mulley <gaius.mulley@southwales.ac.uk>2022-05-18 16:15:44 +0100
commit31ab57c82fd428f7d49bb9b15ef3ec92fd1d28ff (patch)
tree270342fca46de011080f5a1a2a0a7b34979f8b46
parent447671004221524d463f3be71976281d21dbe7d0 (diff)
downloadgcc-31ab57c82fd428f7d49bb9b15ef3ec92fd1d28ff.zip
gcc-31ab57c82fd428f7d49bb9b15ef3ec92fd1d28ff.tar.gz
gcc-31ab57c82fd428f7d49bb9b15ef3ec92fd1d28ff.tar.bz2
gm2tools/m2color.c reformatted to use GNU coding standards.
Reformatted gm2tools/m2color.c to use GNU coding standards. Signed-off-by: Gaius Mulley <gaius.mulley@southwales.ac.uk>
-rw-r--r--gm2tools/ChangeLog2
-rw-r--r--gm2tools/m2color.c12
2 files changed, 10 insertions, 4 deletions
diff --git a/gm2tools/ChangeLog b/gm2tools/ChangeLog
index 6550614..e496f67 100644
--- a/gm2tools/ChangeLog
+++ b/gm2tools/ChangeLog
@@ -2,6 +2,8 @@
* gm2l.1: Corrected default implementation/program module
extension to .mod.
+ * m2color.c: Reformatted to use GNU coding standard
+ formatting.
2022-05-17 Gaius Mulley <gaius.mulley@southwales.ac.uk>
diff --git a/gm2tools/m2color.c b/gm2tools/m2color.c
index 1fe42fc..7959560 100644
--- a/gm2tools/m2color.c
+++ b/gm2tools/m2color.c
@@ -23,23 +23,27 @@ along with GNU Modula-2; see the file COPYING3. If not see
extern "C" {
-const char *m2color_colorize_start (bool show_color, char *name, unsigned int name_len)
+const char *
+m2color_colorize_start (bool show_color, char *name, unsigned int name_len)
{
return "";
}
-const char *m2color_colorize_stop (bool show_color)
+const char *
+m2color_colorize_stop (bool show_color)
{
return "";
}
-void _M2_m2color_init ()
+void
+_M2_m2color_init ()
{
}
-void _M2_m2color_finish ()
+void
+_M2_m2color_finish ()
{
}