Deleted Added
full compact
stub.c (84225) stub.c (121193)
1/*-
2 * Copyright (c) 2000 Brian Fundakowski Feldman
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2000 Brian Fundakowski Feldman
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 11 unchanged lines hidden (view full) ---

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/lib/libutil/stub.c 84225 2001-09-30 22:35:07Z dillon $");
28__FBSDID("$FreeBSD: head/lib/libutil/stub.c 121193 2003-10-18 10:04:16Z markm $");
29
30#include <stdio.h>
31#include <stdlib.h>
29
30#include <stdio.h>
31#include <stdlib.h>
32#include <unistd.h>
32
33/*
34 * Stub out what's in -lcrypt.
35 */
36
37#pragma weak crypt_set_format
33
34/*
35 * Stub out what's in -lcrypt.
36 */
37
38#pragma weak crypt_set_format
39/* ARGSUSED */
38int
40int
39crypt_set_format(const char *f) {
41crypt_set_format(const char *f __unused) {
40
41 if (getenv("CRYPT_DEBUG") != NULL)
42 fprintf(stderr, "crypt_set_format: eek, stub called!\n");
43 return (0);
44}
42
43 if (getenv("CRYPT_DEBUG") != NULL)
44 fprintf(stderr, "crypt_set_format: eek, stub called!\n");
45 return (0);
46}