diff options
Diffstat (limited to 'libc/string/x86_64')
-rw-r--r-- | libc/string/x86_64/memcpy.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/memset.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/strcat.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/strchr.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/strcmp.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/strcpy.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/strcspn.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/strlen.S | 5 | ||||
-rw-r--r-- | libc/string/x86_64/strspn.S | 5 |
9 files changed, 18 insertions, 27 deletions
diff --git a/libc/string/x86_64/memcpy.S b/libc/string/x86_64/memcpy.S index 9c8169b42..e164278df 100644 --- a/libc/string/x86_64/memcpy.S +++ b/libc/string/x86_64/memcpy.S @@ -14,9 +14,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/memset.S b/libc/string/x86_64/memset.S index 6b758ce3a..d6744129d 100644 --- a/libc/string/x86_64/memset.S +++ b/libc/string/x86_64/memset.S @@ -15,9 +15,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/strcat.S b/libc/string/x86_64/strcat.S index 23d068fea..55e09e5f1 100644 --- a/libc/string/x86_64/strcat.S +++ b/libc/string/x86_64/strcat.S @@ -15,9 +15,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/strchr.S b/libc/string/x86_64/strchr.S index 9ef46b7f2..256b97911 100644 --- a/libc/string/x86_64/strchr.S +++ b/libc/string/x86_64/strchr.S @@ -14,9 +14,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/strcmp.S b/libc/string/x86_64/strcmp.S index 437e145bf..05d6f39c1 100644 --- a/libc/string/x86_64/strcmp.S +++ b/libc/string/x86_64/strcmp.S @@ -15,9 +15,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/strcpy.S b/libc/string/x86_64/strcpy.S index 612a30d1a..3ada70fbd 100644 --- a/libc/string/x86_64/strcpy.S +++ b/libc/string/x86_64/strcpy.S @@ -14,9 +14,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/strcspn.S b/libc/string/x86_64/strcspn.S index fd9b09c48..7a06c8867 100644 --- a/libc/string/x86_64/strcspn.S +++ b/libc/string/x86_64/strcspn.S @@ -19,9 +19,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/strlen.S b/libc/string/x86_64/strlen.S index 4213f0ab6..9e84326c2 100644 --- a/libc/string/x86_64/strlen.S +++ b/libc/string/x86_64/strlen.S @@ -14,9 +14,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" diff --git a/libc/string/x86_64/strspn.S b/libc/string/x86_64/strspn.S index 41cff0490..366377649 100644 --- a/libc/string/x86_64/strspn.S +++ b/libc/string/x86_64/strspn.S @@ -19,9 +19,8 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. */ + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ #include "_glibc_inc.h" |