blob: 79ae47467c41f66e42f99e056618a5a1601486d5 [file] [log] [blame]
/*
* Copyright 2015 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <errno.h>
#include <unistd.h>
char *getpass(const char *prompt) {
errno = ENXIO;
return 0;
}