-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from flathub/com.github.kalibari.audok
Com.GitHub.kalibari.audok
- Loading branch information
Showing
4 changed files
with
45 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- a/lib/argv.c | ||
+++ b/lib/argv.c | ||
@@ -52,25 +52,9 @@ | ||
|
||
/* Routines imported from standard C runtime libraries. */ | ||
|
||
-#ifdef ANSI_PROTOTYPES | ||
- | ||
#include <stddef.h> | ||
#include <string.h> | ||
#include <stdlib.h> | ||
- | ||
-#else /* !ANSI_PROTOTYPES */ | ||
- | ||
-#if !defined _WIN32 || defined __GNUC__ | ||
-extern char *memcpy (); /* Copy memory region */ | ||
-extern int strlen (); /* Count length of string */ | ||
-extern char *malloc (); /* Standard memory allocater */ | ||
-extern char *realloc (); /* Standard memory reallocator */ | ||
-extern void free (); /* Free malloc'd memory */ | ||
-extern char *strdup (); /* Duplicate a string */ | ||
-#endif | ||
- | ||
-#endif /* ANSI_PROTOTYPES */ | ||
- | ||
|
||
#ifndef NULL | ||
#define NULL 0 | ||
|