mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
9 lines
123 B
C++
9 lines
123 B
C++
|
#include <cxxabi.h>
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
std::cerr << "ok" << std::endl;
|
||
|
return 0;
|
||
|
}
|