diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-04-20 23:10:22 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-04-20 23:10:56 +0200 |
commit | 315b33540a008fba0af1cdbad5d3448d98a6e73c (patch) | |
tree | b72a0ee2a1dce0ece7f45fedb45601327a8497b6 /src/todo.c | |
parent | 0791eaabca0fb1ef8a8675e47d701bbcde4d4a3f (diff) | |
download | calcurse-315b33540a008fba0af1cdbad5d3448d98a6e73c.zip |
Mark several functions static
These are not needed outside of the corresponding compilation units.
Spotted with "-Wmissing-prototypes".
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/todo.c')
-rw-r--r-- | src/todo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -506,7 +506,7 @@ todo_pipe_item (void) wins_unprepare_external (); } -void +static void todo_free (struct todo *todo) { mem_free (todo->mesg); |