-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove old ultralib * git subrepo clone [email protected]:decompals/ultralib.git lib/ultralib subrepo: subdir: "lib/ultralib" merged: "2717d45" upstream: origin: "[email protected]:decompals/ultralib.git" branch: "main" commit: "2717d45" git-subrepo: version: "0.4.9" origin: "[email protected]:ingydotnet/git-subrepo.git" commit: "ea10886" * Splat and ultralib fixes
- Loading branch information
Showing
335 changed files
with
3,685 additions
and
1,918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
[subrepo] | ||
remote = [email protected]:decompals/ultralib.git | ||
branch = main | ||
commit = 299d7faf8798cbe75e3247ccdf4e65c09f5270dd | ||
parent = a3476fcc3a0fc47aa0c31f3ef04d08181daf3050 | ||
commit = 2717d451b99c336e87a9e8548969bb57e383cfa5 | ||
parent = 0f5de4873b7ff6118116e9ddd765fda39b0de474 | ||
method = merge | ||
cmdver = 0.4.6 | ||
cmdver = 0.4.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
lib/ultralib/include/dbgproto.h → lib/ultralib/include/PRinternal/dbgproto.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
lib/ultralib/src/rmon/rmonint.h → lib/ultralib/include/PRinternal/rmonint.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// Nothing needed here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef _MEMORY_H | ||
#define _MEMORY_H | ||
/* | ||
memory.h | ||
*/ | ||
|
||
#ifndef _SIZE_T_DEF | ||
#define _SIZE_T_DEF | ||
typedef unsigned size_t; | ||
#endif | ||
|
||
void *memccpy(void *,void *,int,size_t); | ||
void *memchr(void *,int,size_t); | ||
int memcmp(const void *,const void *,size_t); | ||
void *memcpy(void *,const void *,size_t); | ||
int memicmp(void *,void *,size_t); | ||
void *memmove(void *,void *,size_t); | ||
void *memset(void *,int,size_t); | ||
|
||
void movmem(void *,void *,unsigned); | ||
void setmem(void *,unsigned,int); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. | ||
This file is part of the GNU C Library. | ||
Contributed by Ralf Baechle <[email protected]>. | ||
The GNU C Library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Library General Public License as | ||
published by the Free Software Foundation; either version 2 of the | ||
License, or (at your option) any later version. | ||
The GNU C Library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Library General Public License for more details. | ||
You should have received a copy of the GNU Library General Public | ||
License along with the GNU C Library; see the file COPYING.LIB. If not, | ||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
Boston, MA 02111-1307, USA. */ | ||
|
||
#ifndef _SGIDEFS_H | ||
#define _SGIDEFS_H 1 | ||
|
||
/* | ||
* Definitions for the ISA level | ||
*/ | ||
#define _MIPS_ISA_MIPS1 1 | ||
#define _MIPS_ISA_MIPS2 2 | ||
#define _MIPS_ISA_MIPS3 3 | ||
#define _MIPS_ISA_MIPS4 4 | ||
#define _MIPS_ISA_MIPS5 5 | ||
|
||
/* | ||
* Subprogram calling convention | ||
* | ||
* At the moment only _MIPS_SIM_ABI32 is in use. This will change rsn. | ||
* Until GCC 2.8.0 is released don't rely on this definitions because the | ||
* 64bit code is essentially using the 32bit interface model just with | ||
* 64bit registers. | ||
*/ | ||
#define _MIPS_SIM_ABI32 1 | ||
#define _MIPS_SIM_NABI32 2 | ||
#define _MIPS_SIM_ABI64 3 | ||
|
||
#endif /* sgidefs.h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#ifndef _STDARG_H | ||
#define _STDARG_H | ||
|
||
#define va_list __builtin_va_list | ||
#define va_start __builtin_va_start | ||
#define va_arg __builtin_va_arg | ||
#define va_end __builtin_va_end | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// Nothing needed here |
Oops, something went wrong.