Remove the unneeded $Id$ blabla from the source code, but not in 3rd party code. (Part 3/N)

svn path=/trunk/; revision=58501
This commit is contained in:
Hermès Bélusca-Maïto 2013-03-14 22:21:37 +00:00
parent d0fa874320
commit c94bff6b2e
86 changed files with 41 additions and 208 deletions

View file

@ -1,5 +1,3 @@
/* $Id: drivers.c 52985 2011-07-28 16:21:48Z akhaldi $
*/
/*
* COPYRIGHT: See COPYING in the top level directory
* LICENSE: See LGPL.txt in the top level directory

View file

@ -1,5 +1,3 @@
/* $Id: modules.c 52985 2011-07-28 16:21:48Z akhaldi $
*/
/*
* COPYRIGHT: See COPYING in the top level directory
* LICENSE: See LGPL.txt in the top level directory

View file

@ -1,5 +1,3 @@
/* $Id: processes.c 52985 2011-07-28 16:21:48Z akhaldi $
*/
/*
* COPYRIGHT: See COPYING in the top level directory
* LICENSE: See LGPL.txt in the top level directory

View file

@ -1,4 +1,3 @@
/* $Id: vfat.h 16656 2005-07-20 02:52:52Z ion $ */
#include <ddk/ntifs.h>
#include <ddk/ntdddisk.h>

View file

@ -1,5 +1,4 @@
/* $Id: chkstk_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* PURPOSE: Stack checker

View file

@ -1,5 +1,4 @@
/* $Id: chkstk_asm.s 26099 2007-03-14 20:30:32Z ion $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* PURPOSE: Stack checker

View file

@ -1,6 +1,3 @@
/* $Id: adjust.c 22022 2006-05-24 20:50:55Z greatlrd $
*
*/
int _adjust_fdiv = 0;

View file

@ -1,5 +1,4 @@
/* $Id: memchr_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: lib/sdk/crt/mem/i386/memchr.s

View file

@ -1,6 +1,3 @@
/*
* $Id: memset_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include <asm.inc>
#include <ks386.inc>

View file

@ -1,6 +1,3 @@
/*
* $Id: memccpy.c 30288 2007-11-09 11:22:29Z fireball $
*/
#include <string.h>
@ -8,18 +5,18 @@
void *
_memccpy (void *to, const void *from,int c,size_t count)
{
char t;
size_t i;
char *dst=(char*)to;
const char *src=(const char*)from;
char t;
size_t i;
char *dst=(char*)to;
const char *src=(const char*)from;
for ( i = 0; i < count; i++ )
{
dst[i] = t = src[i];
if ( t == '\0' )
break;
if ( t == c )
return &dst[i+1];
}
return NULL; /* didn't copy c */
for ( i = 0; i < count; i++ )
{
dst[i] = t = src[i];
if ( t == '\0' )
break;
if ( t == c )
return &dst[i+1];
}
return NULL; /* didn't copy c */
}

View file

@ -1,18 +1,15 @@
/*
* $Id: memchr.c 30266 2007-11-08 10:54:42Z fireball $
*/
#include <string.h>
void* memchr(const void *s, int c, size_t n)
{
if (n)
{
const char *p = s;
do {
if (*p++ == c)
return (void *)(p-1);
} while (--n != 0);
}
return 0;
if (n)
{
const char *p = s;
do {
if (*p++ == c)
return (void *)(p-1);
} while (--n != 0);
}
return 0;
}

View file

@ -1,6 +1,3 @@
/*
* $Id: memcmp.c 50647 2011-02-10 11:35:05Z tkreuzer $
*/
#include <string.h>
@ -15,7 +12,7 @@ int memcmp(const void *s1, const void *s2, size_t n)
const unsigned char *p1 = s1, *p2 = s2;
do {
if (*p1++ != *p2++)
return (*--p1 - *--p2);
return (*--p1 - *--p2);
} while (--n != 0);
}
return 0;

View file

@ -1,17 +1,14 @@
/*
* $Id: memset.c 30266 2007-11-08 10:54:42Z fireball $
*/
#include <string.h>
void* memset(void* src, int val, size_t count)
{
char *char_src = (char *)src;
char *char_src = (char *)src;
while(count>0) {
*char_src = val;
char_src++;
count--;
}
return src;
while(count>0) {
*char_src = val;
char_src++;
count--;
}
return src;
}

View file

@ -1,5 +1,4 @@
/* $Id: setjmp.s 49836 2010-11-28 09:53:22Z tkreuzer $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* PURPOSE: Implementation of _setjmp/longjmp

View file

@ -11,8 +11,6 @@
*
*/
/* $Id: makepath.c 53713 2011-09-15 17:11:53Z tkreuzer $
*/
#include <precomp.h>
#include <stdlib.h>
#include <string.h>

View file

@ -11,8 +11,6 @@
*
*/
/* $Id: wmakpath.c 53713 2011-09-15 17:11:53Z tkreuzer $
*/
#include <precomp.h>
/*

View file

@ -1,5 +1,3 @@
/* $Id: strcat_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcscat.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strchr_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcschr.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strcmp_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcscmp.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strcpy_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcscpy.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strlen_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcslen.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strncat_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcsncat.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strncmp_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcsncmp.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strncpy_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcsncpy.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strnlen_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcsnlen.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strrchr_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#include "tcsrchr.inc"

View file

@ -1,5 +1,3 @@
/* $Id: tchar.h 53439 2011-08-25 09:34:26Z tkreuzer $
*/
#ifndef __TCHAR_INC_S__
#define __TCHAR_INC_S__

View file

@ -1,5 +1,3 @@
/* $Id: tcscat.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcschr.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcscmp.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcscpy.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcslen.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcsncat.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcsncmp.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcsncpy.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcsnlen.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: tcsrchr.inc 49591 2010-11-15 01:29:12Z tkreuzer $
*/
#include "tchar.h"
#include <asm.inc>

View file

@ -1,5 +1,3 @@
/* $Id: wcscat_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcscat.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcschr_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcschr.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcscmp_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcscmp.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcscpy_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcscpy.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcslen_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcslen.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcsncat_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcsncat.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcsncmp_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcsncmp.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcsncpy_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcsncpy.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcsnlen_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcsnlen.inc"

View file

@ -1,5 +1,3 @@
/* $Id: wcsrchr_asm.s 49826 2010-11-27 22:12:15Z tkreuzer $
*/
#define _UNICODE
#include "tcsrchr.inc"

View file

@ -1,5 +1,3 @@
/* $Id: strcat.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcscat.h"

View file

@ -1,5 +1,3 @@
/* $Id: strchr.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _XINT int
#include <string.h>

View file

@ -1,5 +1,3 @@
/* $Id: strcmp.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcscmp.h"

View file

@ -1,5 +1,3 @@
/* $Id: strcpy.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcscpy.h"

View file

@ -1,5 +1,3 @@
/* $Id: strcspn.c 30291 2007-11-09 12:20:16Z fireball $
*/
#define _x(_X_) (_X_)
#define _strxspn strcspn

View file

@ -1,5 +1,3 @@
/* $Id: strlen.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcslen.h"

View file

@ -1,5 +1,3 @@
/* $Id: strncat.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcsncat.h"

View file

@ -1,5 +1,3 @@
/* $Id: strncmp.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcsncmp.h"

View file

@ -1,5 +1,4 @@
/* $Id: strncpy.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcsncpy.h"

View file

@ -1,5 +1,3 @@
/* $Id: strnlen.c 30283 2007-11-08 21:06:20Z fireball $
*/
#include <string.h>
#include "tcsnlen.h"

View file

@ -1,6 +1,4 @@
/*
* $Id$
*/
#include <limits.h>
#include <string.h>

View file

@ -1,5 +1,3 @@
/* $Id: strrchr.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _XINT int
#include <string.h>

View file

@ -1,5 +1,3 @@
/* $Id: strspn.c 30291 2007-11-09 12:20:16Z fireball $
*/
#define _x(_X_) (!(_X_))
#define _strxspn strspn

View file

@ -1,5 +1,3 @@
/* $Id: strxspn.h 30291 2007-11-09 12:20:16Z fireball $
*/
#include <limits.h>
#include <string.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcscat.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcschr.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcscmp.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcscpy.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcslen.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <stddef.h>
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcsncat.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <stddef.h>
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcsncmp.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <stddef.h>
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcsncpy.h 30283 2007-11-08 21:06:20Z fireball $
*/
#include <stddef.h>
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcsnlen.h 38052 2008-12-13 21:28:05Z tkreuzer $
*/
#include <stddef.h>
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: tcsrchr.h 41916 2009-07-12 10:40:39Z ros-arm-bringup $
*/
#include <tchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcscat.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcschr.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#define _XINT wchar_t

View file

@ -1,5 +1,3 @@
/* $Id: wcscmp.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcscpy.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcslen.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcsncat.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcsncmp.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcsncpy.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcsnlen.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#include <wchar.h>

View file

@ -1,5 +1,3 @@
/* $Id: wcsrchr.c 30283 2007-11-08 21:06:20Z fireball $
*/
#define _UNICODE
#define _XINT wchar_t

View file

@ -1,5 +1,4 @@
/* $Id: witow.c 54651 2011-12-14 22:09:24Z spetreolle $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/msvcrt/stdlib/itow.c

View file

@ -1,5 +1,4 @@
/* $Id: compses.c 37763 2008-11-30 11:42:05Z sginsberg $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/smlib/compses.c

View file

@ -1,5 +1,4 @@
/* $Id: connect.c 37763 2008-11-30 11:42:05Z sginsberg $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: reactos/lib/smlib/connect.c

View file

@ -1,5 +1,4 @@
/* $Id: execpgm.c 37763 2008-11-30 11:42:05Z sginsberg $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/smlib/execpgm.c

View file

@ -1,5 +1,4 @@
/* $Id: lookupss.c 58237 2013-01-27 00:07:58Z hbelusca $
*
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/smlib/lookupss.c