rename the notify.c methods

Use "notify" as a prefix rather than suffix.

git-svn-id: https://svn.musicpd.org/mpd/trunk@7279 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Max Kellermann
2008-04-12 04:14:19 +00:00
committed by Eric Wong
parent 00a16b49ba
commit 38e0dafc4c
2 changed files with 6 additions and 6 deletions

View File

@@ -38,10 +38,10 @@ typedef struct _Notify {
int fds[2];
} Notify;
void initNotify(Notify *notify);
void notifyInit(Notify *notify);
void waitNotify(Notify *notify);
void notifyWait(Notify *notify);
void signalNotify(Notify *notify);
void notifySignal(Notify *notify);
#endif