Skip to content

Commit

Permalink
Use C++ instead C includes for PSP and x86
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Daniel committed Apr 27, 2024
1 parent 406cf4b commit cc7d80d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 13 deletions.
Empty file removed Main.cpp
Empty file.
11 changes: 5 additions & 6 deletions Main_psp.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#include <ctype.h>
#include <iomanip.h>
#include <fstream.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cctype>
#include <csignal>
#include <unistd.h>

#include <pspkernel.h>
Expand Down
12 changes: 5 additions & 7 deletions Main_x86.cpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
#include <stdio.h>
#include <fstream>
#include <limits.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <climits>
#include <csignal>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <fstream>
#include "FC.h"
#include "MyTypes.h"


#include <alsa/asoundlib.h>

using namespace std;
Expand Down
Empty file removed Main_x86_
Empty file.
Empty file removed Makefile
Empty file.

0 comments on commit cc7d80d

Please sign in to comment.