diff options
author | obrien <obrien@FreeBSD.org> | 2003-05-02 06:49:10 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-05-02 06:49:10 +0000 |
commit | 91e854c20e9aa7115fb19c4575df6ac599f03342 (patch) | |
tree | c03fea530a313b3e99619e7d9627cc7701927c40 /sbin/camcontrol | |
parent | e21b490b414e1c48d91f54e4ae266e42fc3c1fa2 (diff) | |
download | FreeBSD-src-91e854c20e9aa7115fb19c4575df6ac599f03342.zip FreeBSD-src-91e854c20e9aa7115fb19c4575df6ac599f03342.tar.gz |
Use __FBSDID.
Diffstat (limited to 'sbin/camcontrol')
-rw-r--r-- | sbin/camcontrol/camcontrol.c | 5 | ||||
-rw-r--r-- | sbin/camcontrol/modeedit.c | 6 | ||||
-rw-r--r-- | sbin/camcontrol/util.c | 6 |
3 files changed, 7 insertions, 10 deletions
diff --git a/sbin/camcontrol/camcontrol.c b/sbin/camcontrol/camcontrol.c index dda3c7d..54e6d1b 100644 --- a/sbin/camcontrol/camcontrol.c +++ b/sbin/camcontrol/camcontrol.c @@ -24,10 +24,11 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/ioctl.h> #include <sys/stdint.h> #include <sys/types.h> diff --git a/sbin/camcontrol/modeedit.c b/sbin/camcontrol/modeedit.c index c8dd20a..88ed1b7 100644 --- a/sbin/camcontrol/modeedit.c +++ b/sbin/camcontrol/modeedit.c @@ -26,10 +26,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/queue.h> #include <sys/types.h> diff --git a/sbin/camcontrol/util.c b/sbin/camcontrol/util.c index 272d2a1..9f0a752 100644 --- a/sbin/camcontrol/util.c +++ b/sbin/camcontrol/util.c @@ -43,10 +43,8 @@ * Taken from the original scsi(8) program. * from: scsi.c,v 1.17 1998/01/12 07:57:57 charnier Exp $"; */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/stdint.h> #include <sys/types.h> |