diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2016-04-04 23:56:53 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-04-05 00:05:33 +0200 |
commit | 9de2868feb8a742edbb89e58375ca8223c64b54d (patch) | |
tree | 85720756f61b762be1a51e211fd1be18e957c58e | |
parent | 71dd092a4f516c64f487b102e5177180d5c19e72 (diff) | |
download | mig-9de2868feb8a742edbb89e58375ca8223c64b54d.tar.gz mig-9de2868feb8a742edbb89e58375ca8223c64b54d.tar.bz2 mig-9de2868feb8a742edbb89e58375ca8223c64b54d.zip |
Include stdint.h in stub code by default.
* server.c: Include stdint.h in the header code.
* user.c: Likewise.
-rw-r--r-- | server.c | 1 | ||||
-rw-r--r-- | user.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -47,6 +47,7 @@ WriteIncludes(FILE *file) fprintf(file, "#include <mach/mig_support.h>\n"); if (IsKernelServer) fprintf(file, "#include <ipc/ipc_port.h>\n"); + fprintf(file, "#include <stdint.h>\n"); fprintf(file, "\n"); } @@ -92,6 +92,7 @@ WriteIncludes(FILE *file) fprintf(file, "#include <mach/msg_type.h>\n"); if (IsKernelUser) fprintf(file, "#include <kern/ipc_mig.h>\n"); + fprintf(file, "#include <stdint.h>\n"); fprintf(file, "\n"); } |