1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-21 13:25:53 +02:00

Remove misplaced extern "C" (#2429)

I think something changed: I now get a compilation error with these
lines (and it works fine without).
This commit is contained in:
Martin Geisler 2024-10-18 03:03:54 -04:00 committed by GitHub
parent 466233d959
commit fb17791c26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,8 +18,6 @@
#ifndef ANALYSE_H
#define ANALYSE_H
extern "C" {
void analyze_numbers(int x, int y);
}
#endif