fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Replace uses of <inttypes.h> by <stdint.h>

+28 -12
+1
src/arch/atarist/psg.c
··· 25 25 26 26 #include <drivers/sound/sound.h> 27 27 28 + #include <stdint.h> 28 29 #include <stdio.h> 29 30 #include <stdlib.h> 30 31 #include <string.h>
+3
src/arch/atarist/psg.h
··· 24 24 #define PCE_ATARIST_PSG_H 1 25 25 26 26 27 + #include <stdint.h> 28 + #include <stdio.h> 29 + 27 30 #include <drivers/sound/sound.h> 28 31 29 32
+5 -1
src/arch/atarist/psg_vol.h
··· 5 5 /***************************************************************************** 6 6 * File name: src/arch/atarist/psg_vol.h * 7 7 * Created: 2015-05-20 by Hampa Hug <hampa@hampa.ch> * 8 - * Copyright: (C) 2015 Hampa Hug <hampa@hampa.ch> * 8 + * Copyright: (C) 2015-2019 Hampa Hug <hampa@hampa.ch> * 9 9 *****************************************************************************/ 10 10 11 11 /***************************************************************************** ··· 18 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * 19 19 * Public License for more details. * 20 20 *****************************************************************************/ 21 + 22 + 23 + #include <stdint.h> 24 + 21 25 22 26 /* 23 27 * Sixteen level by Three voice YM2149 voltab16[C][B][A]
+1
src/arch/ibmpc/covox.c
··· 23 23 #include "main.h" 24 24 #include "covox.h" 25 25 26 + #include <stdint.h> 26 27 #include <stdlib.h> 27 28 28 29 #include <drivers/sound/sound.h>
+2 -1
src/arch/ibmpc/covox.h
··· 24 24 #define PCE_IBMPC_COVOX_H 1 25 25 26 26 27 + #include <stdint.h> 28 + 27 29 #include <drivers/sound/sound.h> 28 - 29 30 30 31 #define PC_COVOX_BUF 2048 31 32 #define PC_COVOX_FIFO 16
+2 -1
src/arch/ibmpc/speaker.c
··· 5 5 /***************************************************************************** 6 6 * File name: src/arch/ibmpc/speaker.c * 7 7 * Created: 2010-02-24 by Hampa Hug <hampa@hampa.ch> * 8 - * Copyright: (C) 2010-2018 Hampa Hug <hampa@hampa.ch> * 8 + * Copyright: (C) 2010-2019 Hampa Hug <hampa@hampa.ch> * 9 9 *****************************************************************************/ 10 10 11 11 /***************************************************************************** ··· 23 23 #include "main.h" 24 24 #include "speaker.h" 25 25 26 + #include <stdint.h> 26 27 #include <stdlib.h> 27 28 28 29 #include <drivers/sound/sound.h>
+3 -1
src/arch/ibmpc/speaker.h
··· 5 5 /***************************************************************************** 6 6 * File name: src/arch/ibmpc/speaker.h * 7 7 * Created: 2010-02-24 by Hampa Hug <hampa@hampa.ch> * 8 - * Copyright: (C) 2010 Hampa Hug <hampa@hampa.ch> * 8 + * Copyright: (C) 2010-2019 Hampa Hug <hampa@hampa.ch> * 9 9 *****************************************************************************/ 10 10 11 11 /***************************************************************************** ··· 23 23 #ifndef PCE_IBMPC_SPEAKER_H 24 24 #define PCE_IBMPC_SPEAKER_H 1 25 25 26 + 27 + #include <stdint.h> 26 28 27 29 #include <drivers/sound/sound.h> 28 30
+1 -1
src/drivers/block/blkpri.c
··· 20 20 *****************************************************************************/ 21 21 22 22 23 - #include <inttypes.h> 23 + #include <stdint.h> 24 24 #include <stdlib.h> 25 25 #include <string.h> 26 26
+1 -1
src/drivers/block/blkpri.h
··· 31 31 #include <drivers/pri/pri.h> 32 32 #include <drivers/pri/pri-img.h> 33 33 34 - #include <inttypes.h> 34 + #include <stdint.h> 35 35 #include <stdio.h> 36 36 37 37
+2 -2
src/drivers/pfi/decode-bits.c
··· 20 20 *****************************************************************************/ 21 21 22 22 23 - #include <inttypes.h> 24 - #include <stdlib.h> 23 + #include <stdint.h> 25 24 #include <stdio.h> 25 + #include <stdlib.h> 26 26 #include <string.h> 27 27 28 28 #include "pfi.h"
+1
src/drivers/pfi/pfi-kryo.c
··· 20 20 *****************************************************************************/ 21 21 22 22 23 + #include <stdint.h> 23 24 #include <stdlib.h> 24 25 #include <stdio.h> 25 26 #include <string.h>
+1
src/drivers/pfi/pfi-pfi.c
··· 20 20 *****************************************************************************/ 21 21 22 22 23 + #include <stdint.h> 23 24 #include <stdlib.h> 24 25 #include <stdio.h> 25 26 #include <string.h>
+2 -1
src/drivers/pfi/pfi-scp.c
··· 20 20 *****************************************************************************/ 21 21 22 22 23 + #include <stdint.h> 24 + #include <stdio.h> 23 25 #include <stdlib.h> 24 - #include <stdio.h> 25 26 #include <string.h> 26 27 #include <time.h> 27 28
+1 -1
src/drivers/pfi/track.c
··· 20 20 *****************************************************************************/ 21 21 22 22 23 - #include <inttypes.h> 23 + #include <stdint.h> 24 24 #include <stdlib.h> 25 25 #include <stdio.h> 26 26 #include <string.h>
+1 -1
src/drivers/pfi/track.h
··· 24 24 #define PFI_TRACK_H 1 25 25 26 26 27 - #include <inttypes.h> 27 + #include <stdint.h> 28 28 29 29 30 30 typedef struct {
+1 -1
src/drivers/pri/pri-img-woz.c
··· 22 22 23 23 #include <config.h> 24 24 25 - #include <inttypes.h> 25 + #include <stdint.h> 26 26 #include <stdlib.h> 27 27 #include <stdio.h> 28 28 #include <string.h>