]> granicus.if.org Git - recode/commitdiff
mixed.c: remove “inline” comments from function declarations
authorReuben Thomas <rrt@sc3d.org>
Wed, 17 Jan 2018 13:09:32 +0000 (13:09 +0000)
committerReuben Thomas <rrt@sc3d.org>
Tue, 23 Jan 2018 07:02:41 +0000 (07:02 +0000)
Compilers can work this stuff out for themselves nowadays.

src/mixed.c

index ec0ff60e935b26394b2a659070c5de43df2908d3..29be7d8dd3b1f3ff5a0bfea5a3e5e58e77e65b31 100644 (file)
@@ -89,14 +89,14 @@ close_mixed (struct mixed *mixed)
     fclose (mixed->subtask.task->output.file);
 }
 
-static /*inline*/ void
+static void
 start_accumulation (struct mixed *mixed)
 {
   mixed->buffer.cursor = mixed->buffer.buffer;
   mixed->subtask.output = mixed->buffer;
 }
 
-static /*inline*/ bool
+static bool
 recode_accumulated (struct mixed *mixed)
 {
   RECODE_TASK task = mixed->subtask.task;