Changeset 549
- Timestamp:
- Mar 8, 2006, 10:51:53 AM (15 years ago)
- Location:
- libcaca/trunk/caca
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/driver_conio.c
r548 r549 26 26 #if defined(SCREENUPDATE_IN_PC_H) 27 27 # include <pc.h> 28 #endif29 30 #include <string.h>31 #include <stdlib.h>32 #if defined(HAVE_UNISTD_H)33 # include <unistd.h>34 #endif35 #include <stdarg.h>36 37 #if defined(HAVE_SYS_IOCTL_H)38 # include <sys/ioctl.h>39 28 #endif 40 29 -
libcaca/trunk/caca/driver_gl.c
r548 r549 26 26 #include <GL/freeglut_ext.h> 27 27 28 #include <stdio.h> /* BUFSIZ */29 28 #include <string.h> 30 29 #include <stdlib.h> 31 #if defined(HAVE_UNISTD_H)32 # include <unistd.h>33 #endif34 #include <stdarg.h>35 30 36 31 #include "caca.h" -
libcaca/trunk/caca/driver_ncurses.c
r548 r549 27 27 # include <curses.h> 28 28 #endif 29 30 #include <stdio.h> /* BUFSIZ */31 #include <string.h>32 #include <stdlib.h>33 #if defined(HAVE_UNISTD_H)34 # include <unistd.h>35 #endif36 #include <stdarg.h>37 29 38 30 #if defined(HAVE_SIGNAL_H) -
libcaca/trunk/caca/driver_slang.c
r548 r549 27 27 # include <slang.h> 28 28 #endif 29 30 #include <stdio.h> /* BUFSIZ */31 #include <string.h>32 #include <stdlib.h>33 #if defined(HAVE_UNISTD_H)34 # include <unistd.h>35 #endif36 #include <stdarg.h>37 29 38 30 #if defined(HAVE_SIGNAL_H) -
libcaca/trunk/caca/driver_win32.c
r548 r549 23 23 24 24 #include <windows.h> 25 26 #include <stdio.h> /* BUFSIZ */27 #include <string.h>28 #include <stdlib.h>29 #if defined(HAVE_UNISTD_H)30 # include <unistd.h>31 #endif32 #include <stdarg.h>33 25 34 26 #include "caca.h" -
libcaca/trunk/caca/driver_x11.c
r548 r549 30 30 31 31 #include <stdio.h> /* BUFSIZ */ 32 #include <string.h>33 32 #include <stdlib.h> 34 #if defined(HAVE_UNISTD_H)35 # include <unistd.h>36 #endif37 #include <stdarg.h>38 33 39 34 #include "caca.h"
Note: See TracChangeset
for help on using the changeset viewer.