diff options
author | dillon <dillon@FreeBSD.org> | 2001-09-30 22:30:55 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 2001-09-30 22:30:55 +0000 |
commit | 35945dc1b734c5c022b14139299a72871ca268e1 (patch) | |
tree | 44f7addd3d0b5d9b93a8dc7f1e43a1a455a23320 | |
parent | 615806b0ec0f45f226ca86c5d3bbf14f893a6e64 (diff) | |
download | FreeBSD-src-35945dc1b734c5c022b14139299a72871ca268e1.zip FreeBSD-src-35945dc1b734c5c022b14139299a72871ca268e1.tar.gz |
Add __FBSDID()s to libusb
-rw-r--r-- | lib/libusb/data.c | 5 | ||||
-rw-r--r-- | lib/libusb/descr.c | 6 | ||||
-rw-r--r-- | lib/libusb/parse.c | 6 | ||||
-rw-r--r-- | lib/libusb/usage.c | 6 | ||||
-rw-r--r-- | lib/libusbhid/data.c | 5 | ||||
-rw-r--r-- | lib/libusbhid/descr.c | 6 | ||||
-rw-r--r-- | lib/libusbhid/parse.c | 6 | ||||
-rw-r--r-- | lib/libusbhid/usage.c | 6 |
8 files changed, 24 insertions, 22 deletions
diff --git a/lib/libusb/data.c b/lib/libusb/data.c index c850ba8..31fc0ff 100644 --- a/lib/libusb/data.c +++ b/lib/libusb/data.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 <assert.h> #include <stdlib.h> #include "libusb.h" diff --git a/lib/libusb/descr.c b/lib/libusb/descr.c index 65b60ce..294cdff 100644 --- a/lib/libusb/descr.c +++ b/lib/libusb/descr.c @@ -24,11 +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/types.h> #include <assert.h> diff --git a/lib/libusb/parse.c b/lib/libusb/parse.c index da4c974..4089b6e 100644 --- a/lib/libusb/parse.c +++ b/lib/libusb/parse.c @@ -24,11 +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 <assert.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libusb/usage.c b/lib/libusb/usage.c index 7e71bff..e6931b9 100644 --- a/lib/libusb/usage.c +++ b/lib/libusb/usage.c @@ -24,11 +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 <ctype.h> #include <err.h> #include <stdio.h> diff --git a/lib/libusbhid/data.c b/lib/libusbhid/data.c index c850ba8..31fc0ff 100644 --- a/lib/libusbhid/data.c +++ b/lib/libusbhid/data.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 <assert.h> #include <stdlib.h> #include "libusb.h" diff --git a/lib/libusbhid/descr.c b/lib/libusbhid/descr.c index 65b60ce..294cdff 100644 --- a/lib/libusbhid/descr.c +++ b/lib/libusbhid/descr.c @@ -24,11 +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/types.h> #include <assert.h> diff --git a/lib/libusbhid/parse.c b/lib/libusbhid/parse.c index da4c974..4089b6e 100644 --- a/lib/libusbhid/parse.c +++ b/lib/libusbhid/parse.c @@ -24,11 +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 <assert.h> #include <stdlib.h> #include <string.h> diff --git a/lib/libusbhid/usage.c b/lib/libusbhid/usage.c index 7e71bff..e6931b9 100644 --- a/lib/libusbhid/usage.c +++ b/lib/libusbhid/usage.c @@ -24,11 +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 <ctype.h> #include <err.h> #include <stdio.h> |