link.c (1de7b4b805ddbf2429da511c053686ac4591ed89) | link.c (1f7661742de650bcb6b9124ee3da7e94c8650c4b) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2005 Brian Somers <brian@FreeBSD.org> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 18 unchanged lines hidden (view full) --- 27 */ 28 29#include <sys/cdefs.h> 30__FBSDID("$FreeBSD$"); 31 32#include <sys/types.h> 33#include <err.h> 34#include <limits.h> | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2005 Brian Somers <brian@FreeBSD.org> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 18 unchanged lines hidden (view full) --- 27 */ 28 29#include <sys/cdefs.h> 30__FBSDID("$FreeBSD$"); 31 32#include <sys/types.h> 33#include <err.h> 34#include <limits.h> |
35#include <stdbool.h> |
|
35#include <stdio.h> 36#include <stdlib.h> 37#include <unistd.h> 38 39#include "extern.h" 40 41void 42c_link(const char *file1, off_t skip1, const char *file2, off_t skip2) --- 53 unchanged lines hidden --- | 36#include <stdio.h> 37#include <stdlib.h> 38#include <unistd.h> 39 40#include "extern.h" 41 42void 43c_link(const char *file1, off_t skip1, const char *file2, off_t skip2) --- 53 unchanged lines hidden --- |