blob: fa93b7ecc2bc688a2d55675b7be85618dfc31aa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
** Copyright 2006, Double Precision Inc.
**
** See COPYING for distribution information.
*/
#include <stdio.h>
/*
** Stub ldapsearch binary when openldap is not available.
*/
int main()
{
return (0);
}
|