remove unnecessary includes inside hanekawa

This commit is contained in:
Furkan Mudanyali 2023-12-26 19:30:27 +03:00
parent 37f4243c61
commit 1bff9d0f7c
3 changed files with 0 additions and 8 deletions

View File

@ -16,8 +16,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <hal.h>
int abs(int x) {
return x >= 0 ? x : -x;
}

View File

@ -16,10 +16,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <string.h>
#include <stdint.h>
#include <limits.h>
char* stpcpy(char* restrict d, const char* s){
for(;(*d=*s); s++, d++);
return d;

View File

@ -16,8 +16,6 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <string.h>
char* strcpy(char* restrict dest, const char* src) {
stpcpy(dest, src);
return dest;