Skip to content

Commit

Permalink
Changed name to avoid conflict with MacOS Classic headers
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed May 14, 2006
1 parent 5df0ab2 commit 33c472c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion timidity/common.c
Expand Up @@ -29,7 +29,7 @@
#include "config.h"
#include "common.h"
#include "output.h"
#include "controls.h"
#include "ctrlmode.h"

/* I guess "rb" should be right for any libc */
#define OPEN_MODE "rb"
Expand Down
4 changes: 2 additions & 2 deletions timidity/controls.c → timidity/ctrlmode.c
Expand Up @@ -17,12 +17,12 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
controls.c
ctrlmode.c
*/

#include "config.h"
#include "controls.h"
#include "ctrlmode.h"

#ifdef SDL
extern ControlMode sdl_control_mode;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion timidity/filter.c
Expand Up @@ -35,7 +35,7 @@
#include <stdlib.h>
#include "config.h"
#include "common.h"
#include "controls.h"
#include "ctrlmode.h"
#include "instrum.h"
#include "filter.h"

Expand Down
2 changes: 1 addition & 1 deletion timidity/instrum.c
Expand Up @@ -32,7 +32,7 @@
#include "instrum.h"
#include "playmidi.h"
#include "output.h"
#include "controls.h"
#include "ctrlmode.h"
#include "resample.h"
#include "tables.h"
#include "filter.h"
Expand Down
2 changes: 1 addition & 1 deletion timidity/mix.c
Expand Up @@ -30,7 +30,7 @@
#include "instrum.h"
#include "playmidi.h"
#include "output.h"
#include "controls.h"
#include "ctrlmode.h"
#include "tables.h"
#include "resample.h"
#include "mix.h"
Expand Down
2 changes: 1 addition & 1 deletion timidity/playmidi.c
Expand Up @@ -34,7 +34,7 @@
#include "readmidi.h"
#include "output.h"
#include "mix.h"
#include "controls.h"
#include "ctrlmode.h"
#include "timidity.h"

#include "tables.h"
Expand Down
2 changes: 1 addition & 1 deletion timidity/readmidi.c
Expand Up @@ -32,7 +32,7 @@
#include "playmidi.h"
#include "readmidi.h"
#include "output.h"
#include "controls.h"
#include "ctrlmode.h"

int32 quietchannels=0;

Expand Down
2 changes: 1 addition & 1 deletion timidity/resample.c
Expand Up @@ -29,7 +29,7 @@
#include "instrum.h"
#include "playmidi.h"
#include "output.h"
#include "controls.h"
#include "ctrlmode.h"
#include "tables.h"
#include "resample.h"

Expand Down
2 changes: 1 addition & 1 deletion timidity/sdl_c.c
Expand Up @@ -28,7 +28,7 @@
#include "config.h"
#include "common.h"
#include "output.h"
#include "controls.h"
#include "ctrlmode.h"
#include "instrum.h"
#include "playmidi.h"

Expand Down
2 changes: 1 addition & 1 deletion timidity/timidity.c
Expand Up @@ -29,7 +29,7 @@
#include "playmidi.h"
#include "readmidi.h"
#include "output.h"
#include "controls.h"
#include "ctrlmode.h"
#include "timidity.h"

#include "tables.h"
Expand Down

0 comments on commit 33c472c

Please sign in to comment.