mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 04:41:11 +00:00
6f45c666bc
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D14595 --HG-- extra : moz-landing-system : lando
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;
|
|
}
|