diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-08-07 06:24:25 +0000 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-08-07 06:24:25 +0000 |
commit | 2cedbd6ee80637ae097b911a073086c0738c4127 (patch) | |
tree | dc9c5a6dffc399ac3ea6054564049127b467783a /sbin/gpt | |
parent | 066853b70e478ea31bad3b5bbd7458cf11bd51c1 (diff) | |
download | src-test2-2cedbd6ee80637ae097b911a073086c0738c4127.tar.gz src-test2-2cedbd6ee80637ae097b911a073086c0738c4127.zip |
Notes
Diffstat (limited to 'sbin/gpt')
-rw-r--r-- | sbin/gpt/add.c | 5 | ||||
-rw-r--r-- | sbin/gpt/create.c | 5 | ||||
-rw-r--r-- | sbin/gpt/destroy.c | 5 | ||||
-rw-r--r-- | sbin/gpt/map.c | 5 | ||||
-rw-r--r-- | sbin/gpt/migrate.c | 5 | ||||
-rw-r--r-- | sbin/gpt/recover.c | 5 | ||||
-rw-r--r-- | sbin/gpt/show.c | 5 |
7 files changed, 21 insertions, 14 deletions
diff --git a/sbin/gpt/add.c b/sbin/gpt/add.c index 24d515c726f2..17ff86f2cae1 100644 --- a/sbin/gpt/add.c +++ b/sbin/gpt/add.c @@ -22,10 +22,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <sys/disklabel.h> #include <sys/gpt.h> diff --git a/sbin/gpt/create.c b/sbin/gpt/create.c index e9ac8cedb127..a80714cdc42d 100644 --- a/sbin/gpt/create.c +++ b/sbin/gpt/create.c @@ -22,10 +22,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <sys/gpt.h> diff --git a/sbin/gpt/destroy.c b/sbin/gpt/destroy.c index 8c85d24c43d4..1a8bb539cf66 100644 --- a/sbin/gpt/destroy.c +++ b/sbin/gpt/destroy.c @@ -22,10 +22,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <sys/gpt.h> diff --git a/sbin/gpt/map.c b/sbin/gpt/map.c index 0a71f8322525..f8c433bdd6b0 100644 --- a/sbin/gpt/map.c +++ b/sbin/gpt/map.c @@ -22,10 +22,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <err.h> #include <stdio.h> diff --git a/sbin/gpt/migrate.c b/sbin/gpt/migrate.c index f0a0d7384714..4f7d7956b35d 100644 --- a/sbin/gpt/migrate.c +++ b/sbin/gpt/migrate.c @@ -22,10 +22,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <sys/disklabel.h> #include <sys/gpt.h> diff --git a/sbin/gpt/recover.c b/sbin/gpt/recover.c index d4b8418cd6d1..375346a128bd 100644 --- a/sbin/gpt/recover.c +++ b/sbin/gpt/recover.c @@ -22,10 +22,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <sys/gpt.h> diff --git a/sbin/gpt/show.c b/sbin/gpt/show.c index 08fa66017749..62f8aff532c3 100644 --- a/sbin/gpt/show.c +++ b/sbin/gpt/show.c @@ -22,10 +22,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 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 <sys/gpt.h> |