diff options
author | Mattias Andrée <maandree@kth.se> | 2023-12-05 00:03:04 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-12-05 00:03:04 +0100 |
commit | 58dd684c4e86944301959a140dbed9746df35779 (patch) | |
tree | a2702ea4f66b2a58711ee22eb7449c74b1ecf0d1 /util | |
parent | First commit (diff) | |
download | libsyscalls-58dd684c4e86944301959a140dbed9746df35779.tar.gz libsyscalls-58dd684c4e86944301959a140dbed9746df35779.tar.bz2 libsyscalls-58dd684c4e86944301959a140dbed9746df35779.tar.xz |
Second commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'util')
-rwxr-xr-x | util/getdefs | 1 | ||||
-rwxr-xr-x | util/getenum | 1 | ||||
-rwxr-xr-x | util/make-enum | 1 | ||||
-rwxr-xr-x | util/make-mask | 1 | ||||
-rwxr-xr-x | util/make-multiextractor | 1 | ||||
-rwxr-xr-x | util/make-sym-extractor | 1 | ||||
-rwxr-xr-x | util/what-architecture-am-i-using | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/util/getdefs b/util/getdefs index 869dff6..43c0d0d 100755 --- a/util/getdefs +++ b/util/getdefs @@ -1,4 +1,5 @@ #!/bin/sh +# See LICENSE file for copyright and license details. set -e diff --git a/util/getenum b/util/getenum index 84cb73e..343ce76 100755 --- a/util/getenum +++ b/util/getenum @@ -1,4 +1,5 @@ #!/bin/sh +# See LICENSE file for copyright and license details. set -e diff --git a/util/make-enum b/util/make-enum index 7b63e3c..962baba 100755 --- a/util/make-enum +++ b/util/make-enum @@ -1,4 +1,5 @@ #!/bin/sh +# See LICENSE file for copyright and license details. set -e diff --git a/util/make-mask b/util/make-mask index 1285f52..81e57a5 100755 --- a/util/make-mask +++ b/util/make-mask @@ -1,4 +1,5 @@ #!/bin/sh +# See LICENSE file for copyright and license details. set -e diff --git a/util/make-multiextractor b/util/make-multiextractor index 487162e..18285de 100755 --- a/util/make-multiextractor +++ b/util/make-multiextractor @@ -1,4 +1,5 @@ #!/bin/sh +# See LICENSE file for copyright and license details. set -e diff --git a/util/make-sym-extractor b/util/make-sym-extractor index 7fec6b8..6dfcfad 100755 --- a/util/make-sym-extractor +++ b/util/make-sym-extractor @@ -1,4 +1,5 @@ #!/bin/sh +# See LICENSE file for copyright and license details. set -e diff --git a/util/what-architecture-am-i-using b/util/what-architecture-am-i-using index e64d255..80841ff 100755 --- a/util/what-architecture-am-i-using +++ b/util/what-architecture-am-i-using @@ -1,4 +1,5 @@ #!/bin/sh +# See LICENSE file for copyright and license details. dir="$(dirname -- "$0")" |