From: Lawrence S. <ljs...@us...> - 2013-06-13 02:59:43
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 2244cfbf42ab0616d5d3ac607a102e005542f41e (commit) from 10c8de552055f0c2aa9390ea93b345bec8d71610 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2244cfbf42ab0616d5d3ac607a102e005542f41e Author: Lawrence Sebald <ljs...@us...> Date: Wed Jun 12 22:59:14 2013 -0400 strcasecmp/strncasecmp are in <strings.h> not <string.h> (in C99). ----------------------------------------------------------------------- Summary of changes: kernel/arch/dreamcast/fs/fs_iso9660.c | 1 + kernel/exports/library.c | 3 ++- kernel/exports/nmmgr.c | 1 + kernel/fs/fs_ramdisk.c | 1 + kernel/fs/fs_romdisk.c | 1 + 5 files changed, 6 insertions(+), 1 deletions(-) diff --git a/kernel/arch/dreamcast/fs/fs_iso9660.c b/kernel/arch/dreamcast/fs/fs_iso9660.c index 2aa9ce9..f68cd5e 100644 --- a/kernel/arch/dreamcast/fs/fs_iso9660.c +++ b/kernel/arch/dreamcast/fs/fs_iso9660.c @@ -40,6 +40,7 @@ ISO9660 systems, as these were used as references as well. #include <stdio.h> #include <ctype.h> #include <string.h> +#include <strings.h> #include <malloc.h> #include <errno.h> diff --git a/kernel/exports/library.c b/kernel/exports/library.c index 11df284..eb814f9 100644 --- a/kernel/exports/library.c +++ b/kernel/exports/library.c @@ -1,11 +1,12 @@ /* KallistiOS ##version## kernel/library.c - Copyright (C)2003 Dan Potter + Copyright (C) 2003 Dan Potter */ #include <assert.h> #include <string.h> +#include <strings.h> #include <malloc.h> #include <stdio.h> #include <errno.h> diff --git a/kernel/exports/nmmgr.c b/kernel/exports/nmmgr.c index 61188a3..33056da 100644 --- a/kernel/exports/nmmgr.c +++ b/kernel/exports/nmmgr.c @@ -18,6 +18,7 @@ interface at the front of their struct. #include <stdio.h> #include <malloc.h> #include <string.h> +#include <strings.h> #include <kos/nmmgr.h> #include <kos/mutex.h> #include <kos/exports.h> diff --git a/kernel/fs/fs_ramdisk.c b/kernel/fs/fs_ramdisk.c index 043f341..3e60a59 100644 --- a/kernel/fs/fs_ramdisk.c +++ b/kernel/fs/fs_ramdisk.c @@ -36,6 +36,7 @@ cache data from disk rather than as a general purpose file system. #include <kos/fs_ramdisk.h> #include <malloc.h> #include <string.h> +#include <strings.h> #include <stdio.h> #include <stdlib.h> #include <assert.h> diff --git a/kernel/fs/fs_romdisk.c b/kernel/fs/fs_romdisk.c index caef7f3..b19e07d 100644 --- a/kernel/fs/fs_romdisk.c +++ b/kernel/fs/fs_romdisk.c @@ -22,6 +22,7 @@ on sunsite.unc.edu in /pub/Linux/system/recovery/, or as a package under Debian #include <kos/fs_romdisk.h> #include <malloc.h> #include <string.h> +#include <strings.h> #include <stdio.h> #include <assert.h> #include <errno.h> hooks/post-receive -- A pseudo Operating System for the Dreamcast. |