aboutsummaryrefslogtreecommitdiffstats
path: root/src/song_print.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/song_print.h')
-rw-r--r--src/song_print.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/song_print.h b/src/song_print.h
index 78537f064..85fbcf036 100644
--- a/src/song_print.h
+++ b/src/song_print.h
@@ -19,14 +19,16 @@
#ifndef SONG_PRINT_H
#define SONG_PRINT_H
-#include "song.h"
-
+struct client;
+struct song;
struct songvec;
-int song_print_info(struct client *client, Song * song);
+int
+song_print_info(struct client *client, struct song *song);
int songvec_print(struct client *client, const struct songvec *sv);
-void song_print_url(struct client *client, Song * song);
+void
+song_print_url(struct client *client, struct song *song);
#endif