Changeset 8554263 in network-game for common/Common.cpp
- Timestamp:
- Dec 24, 2013, 8:06:30 PM (11 years ago)
- Branches:
- master
- Children:
- 9c18cb7
- Parents:
- 68d94de
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/Common.cpp
r68d94de r8554263 13 13 #include <cmath> 14 14 #include <ctime> 15 #include <cstdlib> 16 #include <cstdio> 15 17 16 18 using namespace std; … … 30 32 31 33 return position; 34 } 35 36 // This might not be cross-platform. Verify that this works correctly or fix it. 37 void error(const char *msg) 38 { 39 perror(msg); 40 exit(0); 32 41 } 33 42
Note:
See TracChangeset
for help on using the changeset viewer.