mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
17 lines
301 B
C
17 lines
301 B
C
|
|
// https://issues.dlang.org/show_bug.cgi?id=22761
|
|
|
|
extern long reg22344 (long adler, const char *buf, int len);
|
|
|
|
long reg22344(adler, buf, len)
|
|
long adler;
|
|
const char *buf;
|
|
int len;
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=22896
|
|
|
|
void fn(int);
|
|
void fn(const int x);
|