Line data Source code
1 : #include <stdio.h> 2 : #include "talloc.h" 3 : 4 : /* 5 : * This program is called by a testing shell script in order to ensure that 6 : * if the library is loaded into different processes it uses different magic 7 : * values in order to thwart security attacks. 8 : */ 9 2 : int main(int argc, char *argv[]) { 10 2 : printf("%i\n", talloc_test_get_magic()); 11 2 : return 0; 12 : }