Get rid of unnecessary barrier. Improve comment.
[pintos-anon] / grading / filesys / grow-seq.inc
1 /* -*- c -*- */
2
3 #include "fslib.h"
4
5 static char buf[TEST_SIZE];
6
7 static size_t
8 return_block_size (void) 
9 {
10   return 1234;
11 }
12
13 void
14 test_main (void) 
15 {
16   seq_test ("testme",
17             buf, sizeof buf, 0,
18             return_block_size, NULL);
19 }