# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D14595
9 lines
144 B
C++
9 lines
144 B
C++
#include <stdio.h>
|
|
#include "mozilla/Unused.h"
|
|
|
|
int main() {
|
|
char tmp;
|
|
mozilla::Unused << fread(&tmp, sizeof(tmp), 1, stdin);
|
|
return 0;
|
|
}
|