Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <stdint.h>
  2.  
  3. #define STACKY_LEN (1024 * STACKY_MULT)
  4.  
  5. int main(int argc, char * argv[]) {
  6. (void)argc;
  7. (void)argv;
  8.  
  9. #ifndef GOTTA_GO_FAST
  10. uint8_t const stacky[STACKY_LEN] = {
  11. [0] = 'A',
  12. [STACKY_LEN - 1] = 'Z',
  13. };
  14. #else
  15. uint8_t stacky[STACKY_LEN] = {
  16. [0] = 'A',
  17. };
  18. stacky[STACKY_LEN - 1] = 'Z';
  19. #endif
  20.  
  21. (void)stacky;
  22.  
  23. return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement