mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-16 04:53:24 +00:00

MozReview-Commit-ID: AChdrrdhf4Z --HG-- extra : rebase_source : 3aab53ea08a0c6699f963b32e1f896cb13d02359
10 lines
144 B
C++
10 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;
|
|
}
|