mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
333 B
C
10 lines
333 B
C
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail24389.c(10): Error: Gnu Asm not supported - compile this file with gcc or clang
|
|
---
|
|
*/
|
|
typedef unsigned long size_t;
|
|
void __qsort_r_compat(void *, size_t, size_t, void *,
|
|
int (*)(void *, const void *, const void *));
|
|
__asm__(".symver " "__qsort_r_compat" ", " "qsort_r" "@" "FBSD_1.0");
|