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 /user.c | |
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.
Diffstat (limited to 'user.c')
-rw-r--r-- | user.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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"); } |