summaryrefslogtreecommitdiff
path: root/rdoff/rdlar.c
Commit message (Collapse)AuthorAgeFilesLines
* Move <string.h> inclusion to compiler.hH. Peter Anvin2018-12-261-1/+0
| | | | | | | There is absolutely no reason not to include <string.h> globally, and with the inline function for mempcpy() we need it there anyway. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* rdoff: use nasm-provided safe memory allocation and I/OH. Peter Anvin2017-04-171-2/+4
| | | | | | | | | We already have abort-on-error memory allocation and I/O operations in nasmlib, so use them for rdoff as well. Delete long-since-obsolete rdoff Mkfiles directory. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
* NASM: relicense under the 2-clause BSD licenseH. Peter Anvin2009-07-061-4/+1
| | | | | | | | *To the best of my knowledge*, we now have authorization from everyone who has significantly contributed to NASM in the past. As such, change the license to the 2-clause BSD license. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Add new copyright headers to the rdoff codeH. Peter Anvin2009-06-281-1/+33
| | | | | | | | To the best of my knowledge, the only file which we don't have 2-BSD relicensing permission for at this stage is rdf2ihx.c. That file probably should just be rewritten, if anyone cares. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* Use the compiler-provided booleans if available, otherwise emulateH. Peter Anvin2007-10-101-39/+36
| | | | | | | Both C and C++ have "bool", "true" and "false" in lower case; C requires <stdbool.h> for this, in C++ it is an inherent type built into the compiler. Use those instead of the old macros; emulate with a simple typedef enum if unavailable.
* Portability fixesH. Peter Anvin2007-10-021-0/+2
| | | | | | | | | Concentrate compiler dependencies to compiler.h; make sure compiler.h is included first in every .c file (since some prototypes may depend on the presence of feature request macros.) Actually use the conditional inclusion of various functions (totally broken in previous releases.)
* remove "#include <unistd.h> from rdoff directory - two places - it annoyed ↵Frank Kotler2007-08-261-1/+0
| | | | Windows users and seems unneeded
* Fixed distinction between char and int8_t data types.Keith Kanios2007-04-131-14/+14
|
* Remove obsolete types; add <inttypes.h> where needed; header fixesH. Peter Anvin2007-04-121-1/+1
| | | | | | | | | | | - Remove obsolete types like "uint32"; use "uint32_t" consistently. - Make sure we include <inttypes.h> where needed. - Header file guards should be FOO_H or SUBDIR_FOO_H; _FOO_H infringes on the C implementation's namespace and should only be used when writing libc! - Change a few "int8_t" back to "char" where appropriate. There are a lot more places where that should be done, though. - Clean up the check for getuid/getgid in rdoff/rdlar.h.
* General push for x86-64 support, dubbed 0.99.00.Keith Kanios2007-04-121-25/+25
|
* Apply Nindent to all .c and .h filesnasm-0.98.39LATESTH. Peter Anvin2005-01-151-270/+272
|
* try again to finish Yuri's patchFrank Kotler2002-12-041-0/+461