Changeset c8ec58e for libcfa/prelude
- Timestamp:
- Sep 11, 2023, 12:55:49 PM (2 years ago)
- Branches:
- master
- Children:
- c0035fc
- Parents:
- 9509d67a (diff), 73d0a84c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- libcfa/prelude
- Files:
-
- 2 edited
-
extras.c (modified) (1 diff)
-
extras.regx2 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/extras.c
r9509d67a rc8ec58e 3 3 #include <uchar.h> // char16_t, char32_t 4 4 #include <wchar.h> // wchar_t 5 #include <stdlib.h> // malloc, free, exit, atexit, abort5 #include <stdlib.h> // malloc, free, getenv, exit, atexit, abort, printf 6 6 #include <stdio.h> // printf 7 #include <string.h> // strlen, strcmp, strncmp -
libcfa/prelude/extras.regx2
r9509d67a rc8ec58e 1 1 extern void \*malloc[^;]*; 2 2 extern void free[^;]*; 3 extern char \*getenv[^;]*; 3 4 extern void exit[^;]*; 4 5 extern int atexit[^;]*; 5 6 extern void abort[^;]*; 6 7 extern int printf[^;]*; 8 int strcmp[^;]*; 9 int strncmp[^;]*; 10 size_t strlen[^;]*;
Note:
See TracChangeset
for help on using the changeset viewer.