Add copyright

This commit is contained in:
Laurent Vivier 2005-11-12 21:30:19 +00:00
parent 4505b72ea2
commit 6b88b53d85
15 changed files with 90 additions and 0 deletions

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <macos/memory.h>
void free(void *ptr)

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
#include <macos/memory.h>

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
void* memcpy(void* __dest, __const void* __src,

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
void* memset(void* s, int c, size_t n)

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <stdarg.h>
#include <stdio.h>

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
extern int console_putchar(int c);
int putchar (int c)

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
extern void console_putstring(const char *s);
extern int console_putchar(int c);

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
#include <macos/devices.h>
#include <macos/serial.h>

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <stdarg.h>
#include <stdio.h>

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <string.h>
int strcmp(const char *__s1, const char *__s2)

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
char *strcpy (char *__restrict __dest,
__const char *__restrict __src)
{

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
int strlen(const char* s)
{
int len;

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <string.h>
int strncmp(const char *__s1, const char *__s2, size_t __n)

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
char *strncpy (char *__restrict __dest,

View File

@ -1,3 +1,9 @@
/*
*
* (c) 2004,2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
#include <macos/devices.h>