user.h 480 B

123456789101112131415161718192021
  1. /*
  2. * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
  3. */
  4. #ifndef _SYS_USER_H
  5. #define _SYS_USER_H 1
  6. /* The whole purpose of this file is for GDB and GDB only. Don't read
  7. too much into it. Don't use it for anything other than GDB unless
  8. you know what you are doing. */
  9. /* Actually apps like strace also expect a struct user, so it's better to
  10. * have a dummy implementation
  11. */
  12. struct user {
  13. int dummy;
  14. };
  15. #endif /* _SYS_USER_H */