summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-02-16 22:01:50 -0500
committerIan Moffett <ian@osmora.org>2025-02-16 22:01:50 -0500
commit68c7010bf4c432c6d985a8d1a93e29c30c95e07b (patch)
treed0463ea3f50c4cca7e5dcbf0cd7f7210a5c625f7 /lib/libc
parent0991ba3c6d381fd7a2fa85e92a930602f33764e0 (diff)
parent2fe2d7b0a3cf6ee72debefa954c12093da3cac81 (diff)
Merge branch 'main' into expt
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/include/bits/types.h2
-rw-r--r--lib/libc/include/fcntl.h2
-rw-r--r--lib/libc/include/stddef.h2
-rw-r--r--lib/libc/include/stdint.h2
-rw-r--r--lib/libc/include/unistd.h2
-rw-r--r--lib/libc/src/arch/amd64/crt0.S2
-rw-r--r--lib/libc/src/main.c2
-rw-r--r--lib/libc/src/unistd/close.c2
-rw-r--r--lib/libc/src/unistd/open.c2
-rw-r--r--lib/libc/src/unistd/read.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/include/bits/types.h b/lib/libc/include/bits/types.h
index 6d319e8..7b0c2f4 100644
--- a/lib/libc/include/bits/types.h
+++ b/lib/libc/include/bits/types.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/include/fcntl.h b/lib/libc/include/fcntl.h
index c876506..8b439d2 100644
--- a/lib/libc/include/fcntl.h
+++ b/lib/libc/include/fcntl.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/include/stddef.h b/lib/libc/include/stddef.h
index 09566f4..8b81c5b 100644
--- a/lib/libc/include/stddef.h
+++ b/lib/libc/include/stddef.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/include/stdint.h b/lib/libc/include/stdint.h
index 5f61b18..9351933 100644
--- a/lib/libc/include/stdint.h
+++ b/lib/libc/include/stdint.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/include/unistd.h b/lib/libc/include/unistd.h
index 97ef565..50d6800 100644
--- a/lib/libc/include/unistd.h
+++ b/lib/libc/include/unistd.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/src/arch/amd64/crt0.S b/lib/libc/src/arch/amd64/crt0.S
index 9dc0cbf..1a5b466 100644
--- a/lib/libc/src/arch/amd64/crt0.S
+++ b/lib/libc/src/arch/amd64/crt0.S
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/src/main.c b/lib/libc/src/main.c
index 798d667..1154b21 100644
--- a/lib/libc/src/main.c
+++ b/lib/libc/src/main.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/src/unistd/close.c b/lib/libc/src/unistd/close.c
index 8ad77a8..4612f8e 100644
--- a/lib/libc/src/unistd/close.c
+++ b/lib/libc/src/unistd/close.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/src/unistd/open.c b/lib/libc/src/unistd/open.c
index eed01a2..0131785 100644
--- a/lib/libc/src/unistd/open.c
+++ b/lib/libc/src/unistd/open.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/lib/libc/src/unistd/read.c b/lib/libc/src/unistd/read.c
index d77f24a..2c5811c 100644
--- a/lib/libc/src/unistd/read.c
+++ b/lib/libc/src/unistd/read.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without