]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - file.c
moving -Olocal-temps to -O4 until the issues are solved
[xonotic/gmqcc.git] / file.c
diff --git a/file.c b/file.c
index 2bbd81f89cc03705a18377b0dcb27eef9fdaf331..fe6167f3a979d33533bb757f9e4eff713f7f20da 100644 (file)
--- a/file.c
+++ b/file.c
@@ -1,6 +1,5 @@
 /*
- * Copyright (C) 2012
- *     Wolfgang Bumiller
+ * Copyright (C) 2012, 2013
  *     Dale Weiler
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy of
@@ -79,7 +78,7 @@
         FILE *handle = NULL;
         file_init();
 
-        return ((fopen_s(&handle, filename, mode) != 0) ? NULL : handle;
+        return (fopen_s(&handle, filename, mode) != 0) ? NULL : handle;
     }
 
     size_t file_read(void *buffer, size_t size, size_t count, FILE *fp) {
  * These are implemented as just generic wrappers to keep consistency in
  * the API.  Not as macros though  
  */
-void GMQCC_INLINE file_close(FILE *fp) {
+void file_close(FILE *fp) {
     /* Invokes file_exception on windows if fp is null */
     fclose (fp);
 }
 
-size_t GMQCC_INLINE file_write (
+size_t  file_write (
     const void    *buffer,
     size_t         size,
     size_t         count,
@@ -146,26 +145,31 @@ size_t GMQCC_INLINE file_write (
     return fwrite(buffer, size, count, fp);
 }
 
-int GMQCC_INLINE file_error(FILE *fp) {
+int file_error(FILE *fp) {
     /* Invokes file_exception on windows if fp is null */
     return ferror(fp);
 }
 
-int GMQCC_INLINE file_getc(FILE *fp) {
+int file_getc(FILE *fp) {
     /* Invokes file_exception on windows if fp is null */
     return fgetc(fp);
 }
 
-int GMQCC_INLINE file_puts(FILE *fp, const char *str) {
+int file_puts(FILE *fp, const char *str) {
     /* Invokes file_exception on windows if fp is null */
     return fputs(str, fp);
 }
 
-int GMQCC_INLINE file_seek(FILE *fp, long int off, int whence) {
+int file_seek(FILE *fp, long int off, int whence) {
     /* Invokes file_exception on windows if fp is null */
     return fseek(fp, off, whence);
 }
 
+int file_putc(FILE *fp, int ch) {
+    /* Invokes file_exception on windows if fp is null */
+    return fputc(ch, fp);
+}
+
 /*
  * Implements libc getline for systems that don't have it, which is
  * assmed all.  This works the same as getline().