Because of bzero I removed final statement

This commit is contained in:
6arelyFuture 2021-05-31 15:29:23 +02:00
parent 34355a30bb
commit 851c3e5976
Signed by: Future
GPG Key ID: FA77F074E98D98A5
2 changed files with 0 additions and 2 deletions

View File

@ -7,7 +7,6 @@
#include <signal.h>
#define MAX_MEMORY 1048576
#define PROGRAM_NAME 255
#define MAX_TRACK_SIZE 30
FILE *popen(const char *command, const char *mode);

View File

@ -16,7 +16,6 @@ char *va(const char *fmt, ...)
va_start(ap, fmt);
vsnprintf(dest, VA_BUFFER_SIZE, fmt, ap);
va_end(ap);
dest[VA_BUFFER_SIZE - 1] = '\0';
return dest;
}