~ubuntu-branches/ubuntu/precise/smartcardpp/precise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __COMPAT_GETPASS_H
#define __COMPAT_GETPASS_H

#ifdef _WIN32
#ifdef __cplusplus
extern "C" {
#endif
char *getpass (const char *prompt);
#ifdef __cplusplus
}
#endif
#else
#include <unistd.h>
#endif

#endif